Skip to content

Instantly share code, notes, and snippets.

@WadeWaldron
Last active October 8, 2015 16:50
Show Gist options
  • Save WadeWaldron/269e6fa460375152e8f4 to your computer and use it in GitHub Desktop.
Save WadeWaldron/269e6fa460375152e8f4 to your computer and use it in GitHub Desktop.
AkkaTyped-SimpleBehavior
import akka.typed.ScalaDSL._
case class Message(value: String)
val behavior = Static[Message] {
case Message(value) => println(value)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment