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

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

Initializes a new instance of the ConsistentHashingGroup class.
public ConsistentHashingGroup ( IEnumerable paths, int virtualNodesFactor, ConsistentHashMapping hashMapping = null ) : System
paths IEnumerable An enumeration of actor paths 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<string> paths, int virtualNodesFactor = 0,
            ConsistentHashMapping hashMapping = null)
            : base(paths)
        {
            VirtualNodesFactor = virtualNodesFactor;
            HashMapping = hashMapping;
        }

Same methods

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