| ClusterEventCurrentClusterState Constructor (ImmutableSortedSet`1Member, ImmutableHashSet`1Member, ImmutableHashSet`1Address, Address, ImmutableDictionary`2String, Address) |
Creates a new instance of the current cluster state.
Namespace:
Akka.Cluster
Assembly:
Akka.Cluster (in Akka.Cluster.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public CurrentClusterState(
ImmutableSortedSet<Member> members,
ImmutableHashSet<Member> unreachable,
ImmutableHashSet<Address> seenBy,
Address leader,
ImmutableDictionary<string, Address> roleLeaderMap
)
new :
members : ImmutableSortedSet<Member> *
unreachable : ImmutableHashSet<Member> *
seenBy : ImmutableHashSet<Address> *
leader : Address *
roleLeaderMap : ImmutableDictionary<string, Address> -> CurrentClusterState
Parameters
- members
- Type: ImmutableSortedSetMember
The current members of the cluster. - unreachable
- Type: ImmutableHashSetMember
The unreachable members of the cluster. - seenBy
- Type: ImmutableHashSetAddress
The set of nodes who have seen us. - leader
- Type: Akka.ActorAddress
The leader of the cluster. - roleLeaderMap
- Type: ImmutableDictionaryString, Address
The list of role leaders.
See Also