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

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

Initializes a new instance of the RandomPool class.
public RandomPool ( int nrOfInstances, Akka.Routing.Resizer resizer, Akka.Actor.SupervisorStrategy supervisorStrategy, string routerDispatcher, bool usePoolDispatcher = false ) : System.Collections.Generic
nrOfInstances int The initial number of routees in the pool.
resizer Akka.Routing.Resizer The resizer to use when dynamically allocating routees to the pool.
supervisorStrategy Akka.Actor.SupervisorStrategy The strategy to use when supervising the pool.
routerDispatcher string The dispatcher to use when passing messages to the routees.
usePoolDispatcher bool true to use the pool dispatcher; otherwise false.
Результат System.Collections.Generic
        public RandomPool(int nrOfInstances, Resizer resizer, SupervisorStrategy supervisorStrategy,
            string routerDispatcher, bool usePoolDispatcher = false)
            : base(nrOfInstances, resizer, supervisorStrategy, routerDispatcher, usePoolDispatcher)
        {
        }

Same methods

RandomPool::RandomPool ( Config config ) : System.Collections.Generic
RandomPool::RandomPool ( int nrOfInstances ) : System.Collections.Generic
RandomPool::RandomPool ( int nrOfInstances, Akka.Routing.Resizer resizer ) : System.Collections.Generic