Class ClusterNodeRemovedEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.cluster.ClusterNodeEvent
com.atlassian.bitbucket.event.cluster.ClusterMembershipEvent
com.atlassian.bitbucket.event.cluster.ClusterNodeRemovedEvent
- All Implemented Interfaces:
- Serializable
Raised when an 
existing node leaves the cluster.
 
 Due to the non-deterministic nature of event processing, it is possible the other nodes may have joined or left the
 cluster. As a result, using the ClusterInformation
 to determine the cluster nodes may be inconsistent. ClusterMembershipEvent.getCurrentNodes() is provided to simplify deterministic
 processing in listeners.
- See Also:
- 
Field SummaryFields inherited from class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionClusterNodeRemovedEvent(Object source, ClusterNode node, Set<ClusterNode> currentNodes) 
- 
Method SummaryMethods inherited from class com.atlassian.bitbucket.event.cluster.ClusterMembershipEventgetCurrentNodesMethods inherited from class com.atlassian.bitbucket.event.cluster.ClusterNodeEventgetDateMethods inherited from class java.util.EventObjectgetSource, toString
- 
Constructor Details- 
ClusterNodeRemovedEventpublic ClusterNodeRemovedEvent(@Nonnull Object source, @Nonnull ClusterNode node, @Nonnull Set<ClusterNode> currentNodes) 
 
- 
- 
Method Details- 
getRemovedNode- Returns:
- the removed node, which will not be in the current nodesset
 
 
-