Akka.Routing.Router.Router C# (CSharp) 메소드

Router() 공개 메소드

public Router ( RoutingLogic logic ) : System.Collections.Generic
logic RoutingLogic
리턴 System.Collections.Generic
        public Router(RoutingLogic logic, params Routee[] routees)
        {
            if(routees == null)
            {
                routees = new Routee[0];
            }
            _routees = routees;
            _logic = logic;
        }
        public IEnumerable<Routee> Routees

Same methods

Router::Router ( RoutingLogic logic, IActorRef routee ) : System.Collections.Generic