|
Scala example source code file (future-termination.scala)
The Scala future-termination.scala source codeimport scala.actors.Futures /* Test that unevaluated futures do not prevent program termination */ object Test { def main(args: Array[String]) { try { val meaningOfLife = Futures.future { Thread.sleep(5000) // pretend this is a harder problem than it is println("I have the answer!") 42 } println("I can't wait that long, bye.") } catch { case e: Throwable if !e.isInstanceOf[scala.util.control.ControlThrowable] => e.printStackTrace() } } } Other Scala examples (source code examples)Here is a short list of links related to this Scala future-termination.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.