2012-01-17 17:04:20 +01:00
|
|
|
|
/**
|
2012-01-23 18:25:43 +01:00
|
|
|
|
* Copyright (C) 2009-2012 Typesafe Inc. <http://www.typesafe.com>
|
2012-01-17 17:04:20 +01:00
|
|
|
|
*/
|
2012-01-18 10:18:51 +01:00
|
|
|
|
package akka.pattern
|
2012-01-17 17:04:20 +01:00
|
|
|
|
|
2012-04-25 18:34:16 +02:00
|
|
|
|
import akka.actor.Scheduler
|
2012-06-29 16:06:26 +02:00
|
|
|
|
import scala.concurrent.ExecutionContext
|
2012-04-25 18:34:16 +02:00
|
|
|
|
import java.util.concurrent.Callable
|
2012-09-14 10:08:40 +02:00
|
|
|
|
import scala.concurrent.util.FiniteDuration
|
2012-04-25 18:34:16 +02:00
|
|
|
|
|
2012-01-17 17:04:20 +01:00
|
|
|
|
object Patterns {
|
2012-01-18 14:20:13 +01:00
|
|
|
|
import akka.actor.{ ActorRef, ActorSystem }
|
2012-04-25 18:34:16 +02:00
|
|
|
|
import akka.pattern.{ ask ⇒ scalaAsk, pipe ⇒ scalaPipe, gracefulStop ⇒ scalaGracefulStop, after ⇒ scalaAfter }
|
2012-06-29 13:33:20 +02:00
|
|
|
|
import akka.util.Timeout
|
2012-07-04 15:25:30 +02:00
|
|
|
|
import scala.concurrent.Future
|
2012-06-29 13:33:20 +02:00
|
|
|
|
import scala.concurrent.util.Duration
|
2012-01-17 17:04:20 +01:00
|
|
|
|
|
2012-01-18 11:52:35 +01:00
|
|
|
|
/**
|
2012-01-18 13:26:11 +01:00
|
|
|
|
* <i>Java API for `akka.pattern.ask`:</i>
|
2012-07-04 15:25:30 +02:00
|
|
|
|
* Sends a message asynchronously and returns a [[scala.concurrent.Future]]
|
2012-01-18 11:52:35 +01:00
|
|
|
|
* holding the eventual reply message; this means that the target actor
|
|
|
|
|
|
* needs to send the result to the `sender` reference provided. The Future
|
2012-05-18 15:04:08 +02:00
|
|
|
|
* will be completed with an [[akka.pattern.AskTimeoutException]] after the
|
2012-01-17 17:04:20 +01:00
|
|
|
|
* given timeout has expired; this is independent from any timeout applied
|
|
|
|
|
|
* while awaiting a result for this future (i.e. in
|
|
|
|
|
|
* `Await.result(..., timeout)`).
|
|
|
|
|
|
*
|
|
|
|
|
|
* <b>Warning:</b>
|
|
|
|
|
|
* When using future callbacks, inside actors you need to carefully avoid closing over
|
|
|
|
|
|
* the containing actor’s object, i.e. do not call methods or access mutable state
|
|
|
|
|
|
* on the enclosing actor from within the callback. This would break the actor
|
|
|
|
|
|
* encapsulation and may introduce synchronization bugs and race conditions because
|
|
|
|
|
|
* the callback will be scheduled concurrently to the enclosing actor. Unfortunately
|
|
|
|
|
|
* there is not yet a way to detect these illegal accesses at compile time.
|
|
|
|
|
|
*
|
|
|
|
|
|
* <b>Recommended usage:</b>
|
|
|
|
|
|
*
|
|
|
|
|
|
* {{{
|
|
|
|
|
|
* final Future<Object> f = Patterns.ask(worker, request, timeout);
|
|
|
|
|
|
* f.onSuccess(new Procedure<Object>() {
|
|
|
|
|
|
* public void apply(Object o) {
|
|
|
|
|
|
* nextActor.tell(new EnrichedResult(request, o));
|
|
|
|
|
|
* }
|
|
|
|
|
|
* });
|
|
|
|
|
|
* }}}
|
|
|
|
|
|
*/
|
|
|
|
|
|
def ask(actor: ActorRef, message: Any, timeout: Timeout): Future[AnyRef] = scalaAsk(actor, message)(timeout).asInstanceOf[Future[AnyRef]]
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-01-18 13:26:11 +01:00
|
|
|
|
* <i>Java API for `akka.pattern.ask`:</i>
|
2012-07-04 15:25:30 +02:00
|
|
|
|
* Sends a message asynchronously and returns a [[scala.concurrent.Future]]
|
2012-01-17 17:04:20 +01:00
|
|
|
|
* holding the eventual reply message; this means that the target actor
|
|
|
|
|
|
* needs to send the result to the `sender` reference provided. The Future
|
2012-05-18 15:04:08 +02:00
|
|
|
|
* will be completed with an [[akka.pattern.AskTimeoutException]] after the
|
2012-01-17 17:04:20 +01:00
|
|
|
|
* given timeout has expired; this is independent from any timeout applied
|
|
|
|
|
|
* while awaiting a result for this future (i.e. in
|
|
|
|
|
|
* `Await.result(..., timeout)`).
|
|
|
|
|
|
*
|
|
|
|
|
|
* <b>Warning:</b>
|
|
|
|
|
|
* When using future callbacks, inside actors you need to carefully avoid closing over
|
|
|
|
|
|
* the containing actor’s object, i.e. do not call methods or access mutable state
|
|
|
|
|
|
* on the enclosing actor from within the callback. This would break the actor
|
|
|
|
|
|
* encapsulation and may introduce synchronization bugs and race conditions because
|
|
|
|
|
|
* the callback will be scheduled concurrently to the enclosing actor. Unfortunately
|
|
|
|
|
|
* there is not yet a way to detect these illegal accesses at compile time.
|
|
|
|
|
|
*
|
|
|
|
|
|
* <b>Recommended usage:</b>
|
|
|
|
|
|
*
|
|
|
|
|
|
* {{{
|
|
|
|
|
|
* final Future<Object> f = Patterns.ask(worker, request, timeout);
|
|
|
|
|
|
* f.onSuccess(new Procedure<Object>() {
|
|
|
|
|
|
* public void apply(Object o) {
|
|
|
|
|
|
* nextActor.tell(new EnrichedResult(request, o));
|
|
|
|
|
|
* }
|
|
|
|
|
|
* });
|
|
|
|
|
|
* }}}
|
|
|
|
|
|
*/
|
|
|
|
|
|
def ask(actor: ActorRef, message: Any, timeoutMillis: Long): Future[AnyRef] = scalaAsk(actor, message)(new Timeout(timeoutMillis)).asInstanceOf[Future[AnyRef]]
|
2012-01-18 13:01:24 +01:00
|
|
|
|
|
|
|
|
|
|
/**
|
2012-07-04 15:25:30 +02:00
|
|
|
|
* Register an onComplete callback on this [[scala.concurrent.Future]] to send
|
2012-01-18 13:01:24 +01:00
|
|
|
|
* the result to the given actor reference. Returns the original Future to
|
|
|
|
|
|
* allow method chaining.
|
|
|
|
|
|
*
|
|
|
|
|
|
* <b>Recommended usage example:</b>
|
|
|
|
|
|
*
|
|
|
|
|
|
* {{{
|
2012-01-23 11:58:27 +01:00
|
|
|
|
* final Future<Object> f = Patterns.ask(worker, request, timeout);
|
|
|
|
|
|
* // apply some transformation (i.e. enrich with request info)
|
|
|
|
|
|
* final Future<Object> transformed = f.map(new akka.japi.Function<Object, Object>() { ... });
|
|
|
|
|
|
* // send it on to the next stage
|
2012-02-01 14:54:54 +01:00
|
|
|
|
* Patterns.pipe(transformed).to(nextActor);
|
2012-01-18 13:01:24 +01:00
|
|
|
|
* }}}
|
|
|
|
|
|
*/
|
2012-07-17 17:21:08 +02:00
|
|
|
|
def pipe[T](future: Future[T], context: ExecutionContext): PipeableFuture[T] = scalaPipe(future)(context)
|
2012-01-01 20:48:03 +01:00
|
|
|
|
|
|
|
|
|
|
/**
|
2012-07-04 15:25:30 +02:00
|
|
|
|
* Returns a [[scala.concurrent.Future]] that will be completed with success (value `true`) when
|
2012-01-01 20:48:03 +01:00
|
|
|
|
* existing messages of the target actor has been processed and the actor has been
|
|
|
|
|
|
* terminated.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Useful when you need to wait for termination or compose ordered termination of several actors.
|
|
|
|
|
|
*
|
2012-07-04 15:25:30 +02:00
|
|
|
|
* If the target actor isn't terminated within the timeout the [[scala.concurrent.Future]]
|
2012-05-18 15:04:08 +02:00
|
|
|
|
* is completed with failure [[akka.pattern.AskTimeoutException]].
|
2012-01-01 20:48:03 +01:00
|
|
|
|
*/
|
2012-09-14 10:08:40 +02:00
|
|
|
|
def gracefulStop(target: ActorRef, timeout: FiniteDuration, system: ActorSystem): Future[java.lang.Boolean] =
|
2012-04-25 18:34:16 +02:00
|
|
|
|
scalaGracefulStop(target, timeout)(system).asInstanceOf[Future[java.lang.Boolean]]
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-07-04 15:25:30 +02:00
|
|
|
|
* Returns a [[scala.concurrent.Future]] that will be completed with the success or failure of the provided Callable
|
2012-04-25 18:34:16 +02:00
|
|
|
|
* after the specified duration.
|
|
|
|
|
|
*/
|
|
|
|
|
|
def after[T](duration: Duration, scheduler: Scheduler, context: ExecutionContext, value: Callable[Future[T]]): Future[T] =
|
|
|
|
|
|
scalaAfter(duration, scheduler)(value.call())(context)
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-07-04 15:25:30 +02:00
|
|
|
|
* Returns a [[scala.concurrent.Future]] that will be completed with the success or failure of the provided value
|
2012-04-25 18:34:16 +02:00
|
|
|
|
* after the specified duration.
|
|
|
|
|
|
*/
|
|
|
|
|
|
def after[T](duration: Duration, scheduler: Scheduler, context: ExecutionContext, value: Future[T]): Future[T] =
|
|
|
|
|
|
scalaAfter(duration, scheduler)(value)(context)
|
2012-01-18 10:18:51 +01:00
|
|
|
|
}
|