Package org.apache.ignite.events
Class ClusterTagUpdatedEvent
- java.lang.Object
- 
- org.apache.ignite.events.EventAdapter
- 
- org.apache.ignite.events.ClusterTagUpdatedEvent
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Event>,- Event
 
 public class ClusterTagUpdatedEvent extends EventAdapter Event type indicating that cluster tag has been updated.- See Also:
- EventType.EVT_CLUSTER_TAG_UPDATED, Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ClusterTagUpdatedEvent(ClusterNode node, String msg, UUID clusterId, String prevTag, String newTag)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description UUIDclusterId()Cluster ID which tag was updated.StringnewTag()Value of cluster tag after update request that triggered this event.StringpreviousTag()Value of cluster tag before update request that triggered this event.
 
- 
- 
- 
Constructor Detail- 
ClusterTagUpdatedEventpublic ClusterTagUpdatedEvent(ClusterNode node, String msg, UUID clusterId, String prevTag, String newTag) - Parameters:
- node- Node on which the event was fired.
- msg- Optional event message.
- clusterId- ID of cluster which tag was updated.
- prevTag- Previous cluster tag replaced during update.
- newTag- New cluster tag.
 
 
- 
 - 
Method Detail- 
clusterIdpublic UUID clusterId() Cluster ID which tag was updated.- Returns:
- UUID of cluster.
 
 - 
previousTagpublic String previousTag() Value of cluster tag before update request that triggered this event.- Returns:
- Previous value of tag.
 
 - 
newTagpublic String newTag() Value of cluster tag after update request that triggered this event.- Returns:
- New value of tag.
 
 
- 
 
-