What's the difference between Future(blocking(blockingCall()))
and blocking(Future(blockingCall()))
? Both of these are defined in scala.concurrent._
I've looked at the scala docs and some other stack overflow answers but remain unclear on what the difference is.
blocking
acts as a hint to theExecutionContext
that it contains blocking code, so that it may spawn a new thread to prevent deadlocks. This presumes theExecutionContext
can do that, but not all are made to.Let's look at each one-by-one.
This requires an implicit
ExecutionContext
to execute theFuture
. If theExecutionContext
being used is aBlockContext
(likescala.concurrent.ExecutionContext.Implicits.global
is), it may be able to spawn a new thread in its thread pool to handle the blocking call, if it needs to. If it isn't, then nothing special happens.This tells us that
Future(blockingCall())
may be a blocking call, so it is treated the same as above. Except here,Future.apply
is non-blocking, so usingblocking
effectively does nothing but add a little overhead. It doesn't matter whatExecutionContext
we're calling it from here, as it isn't blocking anyway. However, the blocking call within theFuture
will block a thread in theExecutionContext
it's running on, without the hint that its blocking. So, there is no reason to ever do this.I've explained
blocking
more in depth in this answer.REPL Examples: