| MemberStatus Enumeration |
Defines the current status of a cluster member node
Can be one of: Joining, Up, Leaving, Exiting and Down.
Namespace:
Akka.Cluster
Assembly:
Akka.Cluster (in Akka.Cluster.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax Members
| Member name | Value | Description |
---|
| Joining | 0 |
Indicates that a new node is joining the cluster.
|
| Up | 1 |
Indicates that a node is a current member of the cluster.
|
| Leaving | 2 |
Indicates that a node is beginning to leave the cluster.
|
| Exiting | 3 |
Indicates that all nodes are aware that this node is leaving the cluster.
|
| Down | 4 |
Node was forcefully removed from the cluster by means of Down(Address) |
| Removed | 5 |
Node was removed as a member from the cluster.
|
See Also