Skip to content

Instantly share code, notes, and snippets.

@adamw
Created June 13, 2018 18:30
Show Gist options
  • Save adamw/b839262549f8cae180861c41945f4241 to your computer and use it in GitHub Desktop.
Save adamw/b839262549f8cae180861c41945f4241 to your computer and use it in GitHub Desktop.
sealed trait BroadcastMessage
case class Subscribe(consumer: String => IO[Nothing, Unit]) extends BroadcastMessage
case class Received(msg: String) extends BroadcastMessage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment