Skip to content

Instantly share code, notes, and snippets.

@jastice
Last active December 18, 2015 14:09
Show Gist options
  • Save jastice/5795544 to your computer and use it in GitHub Desktop.
Save jastice/5795544 to your computer and use it in GitHub Desktop.
class LineAggregator extends Actor {
var v = ""
override def receive = {
case Exit => context.stop(self)
case Put(line) => v = v + line + "\n"
case Get => sender ! v
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment