예제 #1
0
        /// <summary>
        /// TBD
        /// </summary>
        /// <returns>TBD</returns>
        protected override ActorCell NewCell()
        {
            ActorCell cell = Props.RouterConfig is Pool pool && pool.Resizer != null
                ? new ResizablePoolCell(System, this, Props, Dispatcher, _routeeProps, Supervisor, pool)
                : new RoutedActorCell(System, this, Props, Dispatcher, _routeeProps, Supervisor);

            cell.Init(false, MailboxType);
            return(cell);
        }