Akka.Actor.RootGuardianActorRef.RootGuardianActorRef C# (CSharp) Method

RootGuardianActorRef() public method

public RootGuardianActorRef ( ActorSystemImpl system, Props props, MessageDispatcher dispatcher, Func createMailbox, IInternalActorRef supervisor, ActorPath path, IInternalActorRef deadLetters, IInternalActorRef>.IReadOnlyDictionary extraNames ) : System
system ActorSystemImpl
props Props
dispatcher Akka.Dispatch.MessageDispatcher
createMailbox Func
supervisor IInternalActorRef
path ActorPath
deadLetters IInternalActorRef
extraNames IInternalActorRef>.IReadOnlyDictionary
return System
        public RootGuardianActorRef(ActorSystemImpl system, Props props, MessageDispatcher dispatcher, Func<Mailbox> createMailbox, //TODO: switch from  Func<Mailbox> createMailbox to MailboxType mailboxType
            IInternalActorRef supervisor, ActorPath path, IInternalActorRef deadLetters, IReadOnlyDictionary<string, IInternalActorRef> extraNames)
            : base(system,props,dispatcher,createMailbox,supervisor,path)
        {
            _deadLetters = deadLetters;
            _extraNames = extraNames;
        }