Interface FederatedPartitionEvent
-
- All Superinterfaces:
Event<FederatedPartitionEvent.Type>
public interface FederatedPartitionEvent extends Event<FederatedPartitionEvent.Type>
Represents a change in replication state of a partition during replication. NOTE: This event is dispatched per partition.- Since:
- 12.2.1
- Author:
- cl 2015.12.02
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFederatedPartitionEvent.TypeThe type ofFederatedPartitionEvents.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLocalParticipant()Obtain the participant name where this event is raised from.StringgetParticipant()Obtain the participant name where the partition is replicating to.intgetPartitionId()Obtain the partition Id for this event.-
Methods inherited from interface com.tangosol.net.events.Event
getDispatcher, getType, nextInterceptor
-
-
-
-
Method Detail
-
getPartitionId
int getPartitionId()
Obtain the partition Id for this event.- Returns:
- the partition id
-
getParticipant
String getParticipant()
Obtain the participant name where the partition is replicating to.- Returns:
- the participant name
-
getLocalParticipant
String getLocalParticipant()
Obtain the participant name where this event is raised from.- Returns:
- the local participant name
-
-