Akka.Actor.LocalActorRefProvider.RegisterTempActor C# (CSharp) Метод

RegisterTempActor() публичный Метод

public RegisterTempActor ( IInternalActorRef actorRef, ActorPath path ) : void
actorRef IInternalActorRef
path ActorPath
Результат void
        public void RegisterTempActor(IInternalActorRef actorRef, ActorPath path)
        {
            if(path.Parent != _tempNode)
                throw new Exception("Cannot RegisterTempActor() with anything not obtained from tempPath()");
            _tempContainer.AddChild(path.Name, actorRef);
        }