Akka.Routing.RoundRobinPool.WithDispatcher C# (CSharp) Метод

WithDispatcher() публичный Метод

Creates a new RoundRobinPool router with a given dispatcher id. This method is immutable and returns a new instance of the router.
public WithDispatcher ( string dispatcher ) : Akka.Routing.Pool
dispatcher string The dispatcher id used to configure the new router.
Результат Akka.Routing.Pool
        public override Pool WithDispatcher(string dispatcher)
        {
            return new RoundRobinPool(NrOfInstances, Resizer, SupervisorStrategy, dispatcher, UsePoolDispatcher);
        }