trait FutureTimeoutSupport extends AnyRef
- Source
- FutureTimeoutSupport.scala
Linear Supertypes
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- FutureTimeoutSupport
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def after[T](duration: FiniteDuration, using: Scheduler)(value: => Future[T])(implicit ec: ExecutionContext): Future[T]
Returns a scala.concurrent.Future that will be completed with the success or failure of the provided value after the specified duration.
- def after[T](duration: FiniteDuration)(value: => Future[T])(implicit system: ClassicActorSystemProvider): Future[T]
Returns a scala.concurrent.Future that will be completed with the success or failure of the provided value after the specified duration.
- def afterCompletionStage[T](duration: FiniteDuration, using: Scheduler)(value: => CompletionStage[T])(implicit ec: ExecutionContext): CompletionStage[T]
Returns a java.util.concurrent.CompletionStage that will be completed with the success or failure of the provided value after the specified duration.
- def afterCompletionStage[T](duration: FiniteDuration)(value: => CompletionStage[T])(implicit system: ClassicActorSystemProvider): CompletionStage[T]
Returns a java.util.concurrent.CompletionStage that will be completed with the success or failure of the provided value after the specified duration.