Akka.Actor.RepointableActorRef.NewCell C# (CSharp) Method

NewCell() protected method

protected NewCell ( ) : ActorCell
return ActorCell
        protected virtual ActorCell NewCell()
        {
            var actorCell = new ActorCell(_system, this, _props, _dispatcher, _supervisor);
            actorCell.Init(sendSupervise: false, createMailbox: _createMailbox);
            return actorCell;
        }