Created
May 22, 2016 00:53
-
-
Save mamonu/d39410402a0914bbca6587988b5fded0 to your computer and use it in GitHub Desktop.
IntelliJ IDEA Live Template for an Akka actor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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