Akka.TestKit.Internal.InternalTestActorRef.NewActorCell C# (CSharp) Метод

NewActorCell() защищенный статический Метод

protected static NewActorCell ( ActorSystem system, LocalActorRef actorRef, Props props, MessageDispatcher dispatcher, IInternalActorRef supervisor, Func createMailbox ) : ActorCell
system ActorSystem
actorRef Akka.Actor.LocalActorRef
props Props
dispatcher Akka.Dispatch.MessageDispatcher
supervisor IInternalActorRef
createMailbox Func
Результат Akka.Actor.ActorCell
        protected static ActorCell NewActorCell(ActorSystem system, LocalActorRef actorRef, Props props, MessageDispatcher dispatcher, IInternalActorRef supervisor, Func<Mailbox> createMailbox)
        {
            var cell = new TestActorCell((ActorSystemImpl)system, actorRef, props, dispatcher, supervisor);
            cell.Init(sendSupervise: true, createMailbox: createMailbox);
            return cell;
        }