Last active
October 8, 2015 16:50
-
-
Save WadeWaldron/269e6fa460375152e8f4 to your computer and use it in GitHub Desktop.
AkkaTyped-SimpleBehavior
This file contains 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.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