Skip to content

Instantly share code, notes, and snippets.

@invkrh
Created June 3, 2017 23:09
Show Gist options
  • Save invkrh/a9fc41e27f6dc33255314c6e60f7f627 to your computer and use it in GitHub Desktop.
Save invkrh/a9fc41e27f6dc33255314c6e60f7f627 to your computer and use it in GitHub Desktop.
import scala.concurrent.Future
import scala.concurrent.ExecutionContext.Implicits.global
import scala.util.{Failure, Success}
object Test extends App {
println("1 " + Thread.currentThread().getId)
try {
Future {
println("2 " + Thread.currentThread().getId)
throw new RuntimeException()
}.onComplete {
case Success(x) => println("3 " + Thread.currentThread().getId)
case Failure(e) =>
println("4 " + Thread.currentThread().getId)
throw e
}
} catch {
case e: Exception =>
println("cateched")
throw e
}
Thread.sleep(5000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment