Interface Event<T extends Enum<T>>
-
- Type Parameters:
T
- the type of event
- All Superinterfaces:
Event<T>
- All Known Subinterfaces:
TransactionEvent
,TransferEvent
,TransferEvent.RecoveryTransferEvent
,UnsolicitedCommitEvent
public interface Event<T extends Enum<T>> extends Event<T>
A PartitionedServiceEvent captures information concerning an operation on a PartitionedService. Sub interfaces provide more context on the event.- Since:
- Coherence 12.1.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PartitionedServiceDispatcher
getDispatcher()
Return thePartitionedServiceDispatcher
this event was raised by.default PartitionedService
getService()
Return thePartitionedService
this event was raised from.-
Methods inherited from interface com.tangosol.net.events.Event
getType, nextInterceptor
-
-
-
-
Method Detail
-
getDispatcher
PartitionedServiceDispatcher getDispatcher()
Return thePartitionedServiceDispatcher
this event was raised by.- Specified by:
getDispatcher
in interfaceEvent<T extends Enum<T>>
- Returns:
- the
PartitionedServiceDispatcher
this event was raised by
-
getService
default PartitionedService getService()
Return thePartitionedService
this event was raised from.- Returns:
- the
PartitionedService
this event was raised from
-
-