Returns an input channel that can be used to receive the future's result.
Returns an input channel that can be used to receive the future's result.
the future's input channel
Tests whether the future's result is available.
Tests whether the future's result is available.
true
if the future's result is available,
false
otherwise.
A function of arity 0, returing a value of type
T
that, when applied, blocks the current actor (Actor.self
) until the future's value is available.A future can be queried to find out whether its value is already available without blocking.
(Since version 2.11.0) Use the scala.concurrent.Future instead. For migration from the scala.actors package refer to the Actors Migration Guide.