Akka.Actor.LocalActorRefProvider.RegisterTempActor C# (CSharp) Method

RegisterTempActor() public method

public RegisterTempActor ( IInternalActorRef actorRef, ActorPath path ) : void
actorRef IInternalActorRef
path ActorPath
return 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);
        }