|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectakka.remote.RemoteActorRefProvider
public class RemoteActorRefProvider
Remote ActorRefProvider. Starts up actor on remote node and creates a RemoteActorRef representing it.
INTERNAL API!
Depending on this class is not supported, only the ActorRefProvider interface is supported.
| Constructor Summary | |
|---|---|
RemoteActorRefProvider(java.lang.String systemName,
ActorSystem.Settings settings,
EventStream eventStream,
Scheduler scheduler,
DynamicAccess dynamicAccess)
|
|
| Method Summary | |
|---|---|
akka.actor.InternalActorRef |
actorFor(ActorPath path)
Create actor reference for a specified local or remote path. |
akka.actor.InternalActorRef |
actorFor(akka.actor.InternalActorRef ref,
scala.collection.Iterable<java.lang.String> path)
Create actor reference for the specified child path starting at the given starting point. |
akka.actor.InternalActorRef |
actorFor(akka.actor.InternalActorRef ref,
java.lang.String path)
Create actor reference for a specified local or remote path, which will be parsed using java.net.URI. |
akka.actor.InternalActorRef |
actorOf(akka.actor.ActorSystemImpl system,
Props props,
akka.actor.InternalActorRef supervisor,
ActorPath path,
boolean systemService,
scala.Option<Deploy> deploy,
boolean lookupDeploy,
boolean async)
Actor factory with create-only semantics: will create an actor as described by props with the given supervisor and path (may be different in case of remote supervision). |
protected akka.remote.RemoteDeployer |
createDeployer()
Factory method to make it possible to override deployer in subclass Creates a new instance every time |
akka.actor.InternalActorRef |
deadLetters()
Dead letter destination for this provider. |
akka.remote.RemoteDeployer |
deployer()
The Deployer associated with this ActorRefProvider |
MessageDispatcher |
dispatcher()
|
DynamicAccess |
dynamicAccess()
|
EventStream |
eventStream()
|
Address |
getDefaultAddress()
Obtain the external address of the default transport. |
scala.Option<Address> |
getExternalAddressFor(Address addr)
Obtain the address which is to be used within sender references when sending to the given other address or none if the other address cannot be reached from this system (i.e. no means of communication known; no attempt is made to verify actual reachability). |
akka.actor.LocalActorRef |
guardian()
Reference to the supervisor used for all top-level user actors. |
void |
init(akka.actor.ActorSystemImpl system)
Initialization of an ActorRefProvider happens in two steps: first construction of the object with settings, eventStream, scheduler, etc. |
LoggingAdapter |
log()
|
void |
registerTempActor(akka.actor.InternalActorRef actorRef,
ActorPath path)
Registers an actorRef at a path returned by tempPath(); do NOT pass in any other path. |
akka.actor.InternalActorRef |
remoteDaemon()
|
RemoteSettings |
remoteSettings()
|
akka.actor.InternalActorRef |
rootGuardian()
Reference to the supervisor of guardian and systemGuardian; this is exposed so that the ActorSystemImpl can use it as lookupRoot, i.e. |
ActorPath |
rootPath()
The root path for all actors within this actor system, not including any remote address information. |
Scheduler |
scheduler()
|
Serialization |
serialization()
|
ActorSystem.Settings |
settings()
The Settings associated with this ActorRefProvider |
akka.actor.LocalActorRef |
systemGuardian()
Reference to the supervisor used for all top-level system actors. |
java.lang.String |
systemName()
|
akka.actor.VirtualPathContainer |
tempContainer()
Returns the actor reference representing the “/temp” path. |
ActorPath |
tempPath()
Generates and returns a unique actor path below “/temp”. |
scala.concurrent.Future<scala.runtime.BoxedUnit> |
terminationFuture()
This Future is completed upon termination of this ActorRefProvider, which is usually initiated by stopping the guardian via ActorSystem.stop(). |
RemoteTransport |
transport()
|
void |
unregisterTempActor(ActorPath path)
Unregister a temporary actor from the “/temp” path (i.e. obtained from tempPath()); do NOT pass in any other path. |
void |
useActorOnNode(ActorPath path,
Props props,
Deploy deploy,
ActorRef supervisor)
Using (checking out) actor on a specific node. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RemoteActorRefProvider(java.lang.String systemName,
ActorSystem.Settings settings,
EventStream eventStream,
Scheduler scheduler,
DynamicAccess dynamicAccess)
| Method Detail |
|---|
public java.lang.String systemName()
public ActorSystem.Settings settings()
ActorRefProvider
settings in interface ActorRefProviderpublic EventStream eventStream()
public Scheduler scheduler()
scheduler in interface ActorRefProviderpublic DynamicAccess dynamicAccess()
public RemoteSettings remoteSettings()
public akka.remote.RemoteDeployer deployer()
ActorRefProvider
deployer in interface ActorRefProviderprotected akka.remote.RemoteDeployer createDeployer()
public LoggingAdapter log()
public ActorPath rootPath()
ActorRefProvider
rootPath in interface ActorRefProviderpublic akka.actor.InternalActorRef deadLetters()
ActorRefProvider
deadLetters in interface ActorRefProviderpublic akka.actor.InternalActorRef rootGuardian()
ActorRefProvider
rootGuardian in interface ActorRefProviderpublic akka.actor.LocalActorRef guardian()
ActorRefProvider
guardian in interface ActorRefProviderpublic akka.actor.LocalActorRef systemGuardian()
ActorRefProvider
systemGuardian in interface ActorRefProviderpublic scala.concurrent.Future<scala.runtime.BoxedUnit> terminationFuture()
ActorRefProvider
terminationFuture in interface ActorRefProviderpublic MessageDispatcher dispatcher()
dispatcher in interface ActorRefProvider
public void registerTempActor(akka.actor.InternalActorRef actorRef,
ActorPath path)
ActorRefProvider
registerTempActor in interface ActorRefProviderpublic void unregisterTempActor(ActorPath path)
ActorRefProvider
unregisterTempActor in interface ActorRefProviderpublic ActorPath tempPath()
ActorRefProvider
tempPath in interface ActorRefProviderpublic akka.actor.VirtualPathContainer tempContainer()
ActorRefProvider
tempContainer in interface ActorRefProviderpublic RemoteTransport transport()
public Serialization serialization()
public akka.actor.InternalActorRef remoteDaemon()
public void init(akka.actor.ActorSystemImpl system)
ActorRefProvider
init in interface ActorRefProvider
public akka.actor.InternalActorRef actorOf(akka.actor.ActorSystemImpl system,
Props props,
akka.actor.InternalActorRef supervisor,
ActorPath path,
boolean systemService,
scala.Option<Deploy> deploy,
boolean lookupDeploy,
boolean async)
ActorRefProviderSome(deploy) is passed in, it should be
regarded as taking precedence over the nominally applicable settings,
but it should be overridable from external configuration; the lookup of
the latter can be suppressed by setting lookupDeploy to false.
actorOf in interface ActorRefProviderpublic akka.actor.InternalActorRef actorFor(ActorPath path)
ActorRefProvider
actorFor in interface ActorRefProvider
public akka.actor.InternalActorRef actorFor(akka.actor.InternalActorRef ref,
java.lang.String path)
ActorRefProviders is a relative URI, resolve
it relative to the given ref.
actorFor in interface ActorRefProvider
public akka.actor.InternalActorRef actorFor(akka.actor.InternalActorRef ref,
scala.collection.Iterable<java.lang.String> path)
ActorRefProvider
actorFor in interface ActorRefProvider
public void useActorOnNode(ActorPath path,
Props props,
Deploy deploy,
ActorRef supervisor)
public scala.Option<Address> getExternalAddressFor(Address addr)
ActorRefProvider
getExternalAddressFor in interface ActorRefProviderpublic Address getDefaultAddress()
ActorRefProvider
getDefaultAddress in interface ActorRefProvider
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||