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

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

Initializes a new instance of the ConsistentHashingGroup class.
public ConsistentHashingGroup ( IEnumerable routees, int virtualNodesFactor, ConsistentHashMapping hashMapping = null ) : System
routees IEnumerable An enumeration of routees used by the group router.
virtualNodesFactor int The number of virtual nodes to use on the hash ring.
hashMapping ConsistentHashMapping The consistent hash mapping function to use on incoming messages.
Результат System
        public ConsistentHashingGroup(IEnumerable<IActorRef> routees, int virtualNodesFactor = 0,
            ConsistentHashMapping hashMapping = null)
            : base(routees)
        {
            VirtualNodesFactor = virtualNodesFactor;
            HashMapping = hashMapping;
        }

Same methods

ConsistentHashingGroup::ConsistentHashingGroup ( ) : System
ConsistentHashingGroup::ConsistentHashingGroup ( Config config ) : System
ConsistentHashingGroup::ConsistentHashingGroup ( IEnumerable paths, int virtualNodesFactor, ConsistentHashMapping hashMapping = null ) : System