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

RegisterExtraName() public method

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.
public RegisterExtraName ( string name, IInternalActorRef actor ) : void
name string
actor IInternalActorRef
return void
        public void RegisterExtraName(string name, IInternalActorRef actor)
        {
            _extraNames.Add(name, actor);
        }