|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectakka.actor.LocalActorRefProvider
public class LocalActorRefProvider
Local ActorRef provider.
INTERNAL API!
Depending on this class is not supported, only the ActorRefProvider
interface is supported.
Constructor Summary | |
---|---|
LocalActorRefProvider(java.lang.String _systemName,
ActorSystem.Settings settings,
EventStream eventStream,
DynamicAccess dynamicAccess)
|
|
LocalActorRefProvider(java.lang.String _systemName,
ActorSystem.Settings settings,
EventStream eventStream,
DynamicAccess dynamicAccess,
Deployer deployer,
scala.Option<scala.Function1<ActorPath,InternalActorRef>> _deadLetters)
|
Method Summary | |
---|---|
InternalActorRef |
actorFor(ActorPath path)
Create actor reference for a specified local or remote path. |
InternalActorRef |
actorFor(InternalActorRef ref,
scala.collection.Iterable<java.lang.String> path)
Create actor reference for the specified child path starting at the given starting point. |
InternalActorRef |
actorFor(InternalActorRef ref,
java.lang.String path)
Create actor reference for a specified local or remote path, which will be parsed using java.net.URI. |
InternalActorRef |
actorOf(ActorSystemImpl system,
Props props,
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). |
InternalActorRef |
deadLetters()
Dead letter destination for this provider. |
Deployer |
deployer()
The Deployer associated with this ActorRefProvider |
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. |
LocalActorRef |
guardian()
Reference to the supervisor used for all top-level user actors. |
protected SupervisorStrategy |
guardianStrategy()
Overridable supervision strategy to be used by the “/user” guardian. |
void |
init(ActorSystemImpl _system)
Initialization of an ActorRefProvider happens in two steps: first construction of the object with settings, eventStream, etc. |
LoggingAdapter |
log()
|
void |
registerExtraNames(scala.collection.immutable.Map<java.lang.String,InternalActorRef> _extras)
Higher-level providers (or extensions) might want to register new synthetic top-level paths for doing special stuff. |
void |
registerTempActor(InternalActorRef actorRef,
ActorPath path)
Registers an actorRef at a path returned by tempPath(); do NOT pass in any other path. |
ActorRef |
resolveActorRef(ActorPath path)
Create actor reference for a specified path. |
InternalActorRef |
resolveActorRef(InternalActorRef ref,
scala.collection.Iterable<java.lang.String> pathElements)
INTERNAL API |
ActorRef |
resolveActorRef(java.lang.String path)
Create actor reference for a specified path. |
LocalActorRef |
rootGuardian()
Reference to the supervisor of guardian and systemGuardian; this is exposed so that the ActorSystemImpl can use it as lookupRoot, i.e. |
ActorRef |
rootGuardianAt(Address address)
Reference to the supervisor of guardian and systemGuardian at the specified address; this is exposed so that the ActorRefFactory can use it as lookupRoot, i.e. |
protected SupervisorStrategy |
rootGuardianStrategy()
Overridable supervision strategy to be used by the “/user” guardian. |
ActorPath |
rootPath()
The root path for all actors within this actor system, not including any remote address information. |
ActorSystem.Settings |
settings()
The Settings associated with this ActorRefProvider |
LocalActorRef |
systemGuardian()
Reference to the supervisor used for all top-level system actors. |
protected SupervisorStrategy |
systemGuardianStrategy()
Overridable supervision strategy to be used by the “/user” guardian. |
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(). |
scala.concurrent.Promise<scala.runtime.BoxedUnit> |
terminationPromise()
|
InternalActorRef |
theOneWhoWalksTheBubblesOfSpaceTime()
Top-level anchor for the supervision hierarchy of this actor system. |
void |
unregisterTempActor(ActorPath path)
Unregister a temporary actor from the “/temp” path (i.e. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public LocalActorRefProvider(java.lang.String _systemName, ActorSystem.Settings settings, EventStream eventStream, DynamicAccess dynamicAccess, Deployer deployer, scala.Option<scala.Function1<ActorPath,InternalActorRef>> _deadLetters)
public LocalActorRefProvider(java.lang.String _systemName, ActorSystem.Settings settings, EventStream eventStream, DynamicAccess dynamicAccess)
Method Detail |
---|
public ActorSystem.Settings settings()
ActorRefProvider
settings
in interface ActorRefProvider
public EventStream eventStream()
public DynamicAccess dynamicAccess()
public Deployer deployer()
ActorRefProvider
deployer
in interface ActorRefProvider
public ActorPath rootPath()
ActorRefProvider
rootPath
in interface ActorRefProvider
public LoggingAdapter log()
public InternalActorRef deadLetters()
ActorRefProvider
deadLetters
in interface ActorRefProvider
public ActorPath tempPath()
ActorRefProvider
tempPath
in interface ActorRefProvider
public InternalActorRef theOneWhoWalksTheBubblesOfSpaceTime()
public scala.concurrent.Promise<scala.runtime.BoxedUnit> terminationPromise()
public scala.concurrent.Future<scala.runtime.BoxedUnit> terminationFuture()
ActorRefProvider
terminationFuture
in interface ActorRefProvider
public void registerExtraNames(scala.collection.immutable.Map<java.lang.String,InternalActorRef> _extras)
_extras
- (undocumented)protected SupervisorStrategy rootGuardianStrategy()
protected SupervisorStrategy guardianStrategy()
protected SupervisorStrategy systemGuardianStrategy()
public LocalActorRef rootGuardian()
ActorRefProvider
rootGuardian
in interface ActorRefProvider
public ActorRef rootGuardianAt(Address address)
ActorRefProvider
rootGuardianAt
in interface ActorRefProvider
address
- (undocumented)
public LocalActorRef guardian()
ActorRefProvider
guardian
in interface ActorRefProvider
public LocalActorRef systemGuardian()
ActorRefProvider
systemGuardian
in interface ActorRefProvider
public VirtualPathContainer tempContainer()
ActorRefProvider
tempContainer
in interface ActorRefProvider
public void registerTempActor(InternalActorRef actorRef, ActorPath path)
ActorRefProvider
registerTempActor
in interface ActorRefProvider
actorRef
- (undocumented)path
- (undocumented)public void unregisterTempActor(ActorPath path)
ActorRefProvider
unregisterTempActor
in interface ActorRefProvider
path
- (undocumented)public void init(ActorSystemImpl _system)
ActorRefProvider
init
in interface ActorRefProvider
_system
- (undocumented)public InternalActorRef actorFor(InternalActorRef ref, java.lang.String path)
ActorRefProvider
s
is a relative URI, resolve
it relative to the given ref.
actorFor
in interface ActorRefProvider
ref
- (undocumented)path
- (undocumented)
public InternalActorRef actorFor(ActorPath path)
ActorRefProvider
actorFor
in interface ActorRefProvider
path
- (undocumented)
public InternalActorRef actorFor(InternalActorRef ref, scala.collection.Iterable<java.lang.String> path)
ActorRefProvider
actorFor
in interface ActorRefProvider
ref
- (undocumented)path
- (undocumented)
public ActorRef resolveActorRef(java.lang.String path)
ActorRefProvider
resolveActorRef
in interface ActorRefProvider
path
- (undocumented)
public ActorRef resolveActorRef(ActorPath path)
ActorRefProvider
resolveActorRef
in interface ActorRefProvider
path
- (undocumented)
public InternalActorRef resolveActorRef(InternalActorRef ref, scala.collection.Iterable<java.lang.String> pathElements)
ref
- (undocumented)pathElements
- (undocumented)
public InternalActorRef actorOf(ActorSystemImpl system, Props props, InternalActorRef supervisor, ActorPath path, boolean systemService, scala.Option<Deploy> deploy, boolean lookupDeploy, boolean async)
ActorRefProvider
Some(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 ActorRefProvider
system
- (undocumented)props
- (undocumented)supervisor
- (undocumented)path
- (undocumented)systemService
- (undocumented)deploy
- (undocumented)lookupDeploy
- (undocumented)async
- (undocumented)
public scala.Option<Address> getExternalAddressFor(Address addr)
ActorRefProvider
getExternalAddressFor
in interface ActorRefProvider
addr
- (undocumented)
public Address getDefaultAddress()
ActorRefProvider
getDefaultAddress
in interface ActorRefProvider
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |