Skip to content

Instantly share code, notes, and snippets.

@ihrimech
Last active May 16, 2019 08:09
Show Gist options
  • Save ihrimech/6a3c5716e0d6f6bc9992526ff3fd2682 to your computer and use it in GitHub Desktop.
Save ihrimech/6a3c5716e0d6f6bc9992526ff3fd2682 to your computer and use it in GitHub Desktop.
companion object of the minimal Human actor
object Human {
def props = Props[Human]
// Saying Hello
case object Hello
// Asking how Someone is
case object HowAreYou
// response to someone asking how we are
case class HowIAm(happy: Boolean)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment