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

LocalActorRef() protected method

Inheritors should only call this constructor
protected LocalActorRef ( ActorSystem system, Props props, MessageDispatcher dispatcher, Func createMailbox, IInternalActorRef supervisor, ActorPath path, ActorCell>.Func createActorCell ) : System
system ActorSystem
props Props
dispatcher Akka.Dispatch.MessageDispatcher
createMailbox Func
supervisor IInternalActorRef
path ActorPath
createActorCell ActorCell>.Func
return System
        internal protected  LocalActorRef(ActorSystem system, Props props, MessageDispatcher dispatcher, Func<Mailbox> createMailbox, IInternalActorRef supervisor, ActorPath path, Func<LocalActorRef, ActorCell> createActorCell) //TODO: switch from  Func<Mailbox> createMailbox to MailboxType mailboxType      
        {
            _system = system;
            _props = props;
            _dispatcher = dispatcher;
            _createMailbox = createMailbox;
            _supervisor = supervisor;
            _path = path;
            _cell = createActorCell(this);
        }

Same methods

LocalActorRef::LocalActorRef ( ActorSystemImpl system, Props props, MessageDispatcher dispatcher, Func createMailbox, IInternalActorRef supervisor, ActorPath path ) : System