Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scala - futures does not run

I am trying to run the following future basic code

 future { println("ssss")} onSuccess{ case _ => println("succ")}

However, when I run the main method, nothing to the console is printed and the system exits almost instantly. I am using the implicit ExecutionContext. Any hints?

This code:

  val f = future(Await.ready(Promise().future, d.timeLeft))

   f.onSuccess {
     case _ => println("hee")
   }

also exits immediately....

like image 763
Bober02 Avatar asked Dec 16 '22 11:12

Bober02


1 Answers

Futures are executed on a dedicated thread pool. If your main program does not wait for the future, it will exit immediately and the future won't have a chance to execute. What you can do here is to use Await in your main program to block the main thread until the future executes:

def main( args: Array[String] ) {
  val fut = future { println("ssss")}
  fut onSuccess{ case _ => println("succ")}
  Await.result( fut )
}
like image 150
Régis Jean-Gilles Avatar answered Dec 29 '22 20:12

Régis Jean-Gilles