play.api.libs.concurrent.LowPriorityFuturesImplicits
Creates a future which will be executed after the given delay.
Creates a future which will be executed after the given delay.
the duration after which the future should be executed.
the implicit Futures.
the future that completes first, either the failed future, or the operation.
Creates a future which will resolve to a timeout exception if the given Future has not successfully completed within timeoutDuration.
Creates a future which will resolve to a timeout exception if the given Future has not successfully completed within timeoutDuration.
This version uses an implicit akka.util.Timeout rather than a scala.concurrent.duration.FiniteDuration.
Note that timeout is not the same as cancellation. Even in case of timeout, the given future will still complete, even though that completed value is not returned.
the duration after which a Future.failed(TimeoutException) should be thrown.
the implicit Futures.
the future that completes first, either the failed future, or the operation.
Creates a future which will resolve to a timeout exception if the given scala.concurrent.Future has not successfully completed within timeoutDuration.
Creates a future which will resolve to a timeout exception if the given scala.concurrent.Future has not successfully completed within timeoutDuration.
Note that timeout is not the same as cancellation. Even in case of timeout, the given future will still complete, even though that completed value is not returned.
the duration after which a Future.failed(TimeoutException) should be thrown.
the implicit Futures.
the future that completes first, either the failed future, or the operation.