Skip to content

Instantly share code, notes, and snippets.

@michalkowol
Created December 1, 2014 22:22
Show Gist options
  • Select an option

  • Save michalkowol/6cd33c2cc49ddaccdd9c to your computer and use it in GitHub Desktop.

Select an option

Save michalkowol/6cd33c2cc49ddaccdd9c to your computer and use it in GitHub Desktop.
import akka.actor.ActorDSL._
val a = actor(new Act {
become {
case "hello" => sender() ! "hi"
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment