Packages

t

akka.pattern

FutureTimeoutSupport

trait FutureTimeoutSupport extends AnyRef

Source
FutureTimeoutSupport.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FutureTimeoutSupport
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. 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.

  2. 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.

  3. 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.

  4. 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.