trait PipeToSupport extends AnyRef
- Source
- PipeToSupport.scala
Linear Supertypes
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- PipeToSupport
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final class PipeableCompletionStage[T] extends AnyRef
- final class PipeableFuture[T] extends AnyRef
Value Members
- implicit def pipe[T](future: Future[T])(implicit executionContext: ExecutionContext): PipeableFuture[T]
Import this implicit conversion to gain the
pipeTo
method on scala.concurrent.Future:Import this implicit conversion to gain the
pipeTo
method on scala.concurrent.Future:import akka.pattern.pipe // requires implicit ExecutionContext, e.g. by importing `context.dispatcher` inside an Actor Future { doExpensiveCalc() } pipeTo nextActor or pipe(someFuture) to nextActor
The successful result of the future is sent as a message to the recipient, or the failure is sent in a akka.actor.Status.Failure to the recipient.
- implicit def pipeCompletionStage[T](future: CompletionStage[T])(implicit executionContext: ExecutionContext): PipeableCompletionStage[T]
Import this implicit conversion to gain the
pipeTo
method on scala.concurrent.Future:Import this implicit conversion to gain the
pipeTo
method on scala.concurrent.Future:import akka.pattern.pipe // requires implicit ExecutionContext, e.g. by importing `context.dispatcher` inside an Actor Future { doExpensiveCalc() } pipeTo nextActor or pipe(someFuture) to nextActor
The successful result of the future is sent as a message to the recipient, or the failure is sent in a akka.actor.Status.Failure to the recipient.