Last active
March 22, 2025 14:01
-
-
Save zarinfam/f72272eb248efd96da6f4f2008b4b736 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 } | |
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