Created
June 3, 2017 23:09
-
-
Save invkrh/a9fc41e27f6dc33255314c6e60f7f627 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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