Package akka.actor

Class LocalActorRefProvider

  • All Implemented Interfaces:
    ActorRefProvider

    public class LocalActorRefProvider
    extends java.lang.Object
    implements ActorRefProvider
    Local ActorRef provider.

    INTERNAL API!

    Depending on this class is not supported, only the ActorRefProvider interface is supported.

    • Method Detail

      • rootPath

        public ActorPath rootPath()
        Description copied from interface: ActorRefProvider
        The root path for all actors within this actor system, not including any remote address information.
        Specified by:
        rootPath in interface ActorRefProvider
      • terminationFuture

        public scala.concurrent.Future<Terminated> terminationFuture()
        Description copied from interface: ActorRefProvider
        This Future is completed upon termination of this ActorRefProvider, which is usually initiated by stopping the guardian via ActorSystem.stop().
        Specified by:
        terminationFuture in interface ActorRefProvider
      • tempPath

        public ActorPath tempPath​(java.lang.String prefix)
        Description copied from interface: ActorRefProvider
        Generates and returns a unique actor path starting with prefix below &ldquo;/temp&rdquo;.
        Specified by:
        tempPath in interface ActorRefProvider
      • theOneWhoWalksTheBubblesOfSpaceTime

        public InternalActorRef theOneWhoWalksTheBubblesOfSpaceTime()
        Top-level anchor for the supervision hierarchy of this actor system. Will receive only Supervise/ChildTerminated system messages or Failure message.
      • registerExtraNames

        public 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. This is the way to do just that. Just be careful to complete all this before ActorSystem.start() finishes, or before you start your own auto-spawned actors.
      • rootGuardianStrategy

        protected SupervisorStrategy rootGuardianStrategy()
        Overridable supervision strategy to be used by the &ldquo;/user&rdquo; guardian.
      • guardianStrategy

        protected SupervisorStrategy guardianStrategy()
        Overridable supervision strategy to be used by the &ldquo;/user&rdquo; guardian.
      • systemGuardianStrategy

        protected SupervisorStrategy systemGuardianStrategy()
        Overridable supervision strategy to be used by the &ldquo;/user&rdquo; guardian.
      • rootGuardian

        public LocalActorRef rootGuardian()
        Description copied from interface: ActorRefProvider
        Reference to the supervisor of guardian and systemGuardian; this is exposed so that the ActorSystemImpl can use it as lookupRoot, i.e. for anchoring absolute actor look-ups.
        Specified by:
        rootGuardian in interface ActorRefProvider
      • rootGuardianAt

        public ActorRef rootGuardianAt​(Address address)
        Description copied from interface: ActorRefProvider
        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. for anchoring absolute actor selections.
        Specified by:
        rootGuardianAt in interface ActorRefProvider
      • unregisterTempActor

        public void unregisterTempActor​(ActorPath path)
        Description copied from interface: ActorRefProvider
        Unregister a temporary actor from the &ldquo;/temp&rdquo; path (i.e. obtained from tempPath()); do NOT pass in any other path.
        Specified by:
        unregisterTempActor in interface ActorRefProvider
      • init

        public void init​(ActorSystemImpl _system)
        Description copied from interface: ActorRefProvider
        INTERNAL API: Initialization of an ActorRefProvider happens in two steps: first construction of the object with settings, eventStream, etc. and then—when the ActorSystem is constructed—the second phase during which actors may be created (e.g. the guardians).
        Specified by:
        init in interface ActorRefProvider
      • resolveActorRef

        public ActorRef resolveActorRef​(java.lang.String path)
        Description copied from interface: ActorRefProvider
        Create actor reference for a specified path. If no such actor exists, it will be (equivalent to) a dead letter reference.
        Specified by:
        resolveActorRef in interface ActorRefProvider
      • actorOf

        public InternalActorRef actorOf​(ActorSystemImpl system,
                                        Props props,
                                        InternalActorRef supervisor,
                                        ActorPath path,
                                        boolean systemService,
                                        scala.Option<Deploy> deploy,
                                        boolean lookupDeploy,
                                        boolean async)
        Description copied from interface: ActorRefProvider
        INTERNAL API: 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). If systemService is true, deployment is bypassed (local-only). If 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.
        Specified by:
        actorOf in interface ActorRefProvider
      • getExternalAddressFor

        public scala.Option<Address> getExternalAddressFor​(Address addr)
        Description copied from interface: ActorRefProvider
        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).
        Specified by:
        getExternalAddressFor in interface ActorRefProvider