Skip to content

Instantly share code, notes, and snippets.

View zarinfam's full-sized avatar

Saeed Zarinfam zarinfam

View GitHub Profile
@zarinfam
zarinfam / actor.scala
Last active November 16, 2017 17:21
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$)
}