Akka.Routing.ConsistentHashingPool.ConsistentHashingPool C# (CSharp) Method

ConsistentHashingPool() public method

Initializes a new instance of the ConsistentHashingPool class. 'virtual-nodes-factor' defaults to 0 (zero) if it is not defined in the provided configuration.
public ConsistentHashingPool ( Config config ) : System
config Akka.Configuration.Config The configuration used to configure the pool.
return System
        public ConsistentHashingPool(Config config)
            : base(config)
        {
            VirtualNodesFactor = config.GetInt("virtual-nodes-factor", 0);
        }

Same methods

ConsistentHashingPool::ConsistentHashingPool ( int nrOfInstances ) : System
ConsistentHashingPool::ConsistentHashingPool ( int nrOfInstances, Akka.Routing.Resizer resizer, Akka.Actor.SupervisorStrategy supervisorStrategy, string routerDispatcher, bool usePoolDispatcher = false, int virtualNodesFactor, ConsistentHashMapping hashMapping = null ) : System