Skip to content

Instantly share code, notes, and snippets.

@zarinfam
Last active March 22, 2025 14:01
Show Gist options
  • Save zarinfam/f72272eb248efd96da6f4f2008b4b736 to your computer and use it in GitHub Desktop.
Save zarinfam/f72272eb248efd96da6f4f2008b4b736 to your computer and use it in GitHub Desktop.
IntelliJ IDEA Live Template for an Akka actor
import akka.actor.{ Actor, Props }
class $NAME$ extends Actor {
override def receive = ???
}
object $NAME$ {
def props: Props = Props(new $NAME$)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment