コード例 #1
0
        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);
        }
コード例 #2
0
 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;
 }