Skip to content

Instantly share code, notes, and snippets.

@LimorStotland
Last active April 8, 2019 17:29
Show Gist options
  • Save LimorStotland/cb7dd8f495444a34607c10732b28250e to your computer and use it in GitHub Desktop.
Save LimorStotland/cb7dd8f495444a34607c10732b28250e to your computer and use it in GitHub Desktop.
SuicideActor - with NPE
trait SuicideActor extends Actor {
implicit val ec: ExecutionContext
def killSwitch(block: => Unit): Unit = Future({
block
context stop self
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment