Skip to content

Instantly share code, notes, and snippets.

@mamonu
Created May 22, 2016 00:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mamonu/d39410402a0914bbca6587988b5fded0 to your computer and use it in GitHub Desktop.
Save mamonu/d39410402a0914bbca6587988b5fded0 to your computer and use it in GitHub Desktop.
IntelliJ IDEA Live Template for an Akka actor
import akka.actor.{ Actor, Props }
object $NAME$ {
def props: Props = Props(new $NAME$)
}
class $NAME$ extends Actor {
override def receive = ???
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment