public interface Activation
Modifier and Type | Method and Description |
---|---|
scala.concurrent.Future<akka.actor.ActorRef> |
activationFutureFor(akka.actor.ActorRef endpoint,
akka.util.Timeout timeout,
scala.concurrent.ExecutionContext executor)
Produces a Future with the specified endpoint that will be completed when the endpoint has been activated,
or if it times out, which will happen after the specified Timeout.
|
scala.concurrent.Future<akka.actor.ActorRef> |
deactivationFutureFor(akka.actor.ActorRef endpoint,
akka.util.Timeout timeout,
scala.concurrent.ExecutionContext executor)
Produces a Future which will be completed when the given endpoint has been deactivated or
or if it times out, which will happen after the specified Timeout.
|
scala.concurrent.Future<akka.actor.ActorRef> activationFutureFor(akka.actor.ActorRef endpoint, akka.util.Timeout timeout, scala.concurrent.ExecutionContext executor)
endpoint
- the endpoint to be activatedtimeout
- the timeout for the Futureexecutor
- (undocumented)scala.concurrent.Future<akka.actor.ActorRef> deactivationFutureFor(akka.actor.ActorRef endpoint, akka.util.Timeout timeout, scala.concurrent.ExecutionContext executor)
endpoint
- the endpoint to be deactivatedtimeout
- the timeout of the Futureexecutor
- (undocumented)