Skip to content

Instantly share code, notes, and snippets.

@ihrimech
Last active May 15, 2019 14:45
Show Gist options
  • Save ihrimech/222693623de82770ea88e40841dee100 to your computer and use it in GitHub Desktop.
Save ihrimech/222693623de82770ea88e40841dee100 to your computer and use it in GitHub Desktop.
Minimal Actor Class
class Human extends Actor with ActorLogging {
override def receive: Receive = {
case message: String => log.info(s"I received the following message $message")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment