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

UnregisterTempActor() public method

public UnregisterTempActor ( ActorPath path ) : void
path ActorPath
return void
        public void UnregisterTempActor(ActorPath path)
        {
            if(path.Parent != _tempNode)
                throw new Exception("Cannot UnregisterTempActor() with anything not obtained from tempPath()");
            _tempContainer.RemoveChild(path.Name);
        }