Interface Event<T extends Enum<T>>
-
- Type Parameters:
T
- the type of event
- All Superinterfaces:
Event<T>
- All Known Subinterfaces:
EntryEvent<K,V>
,EntryProcessorEvent
public interface Event<T extends Enum<T>> extends Event<T>
An event dispatched by aPartitionedCacheDispatcher
.- Since:
- Coherence 12.1.2
- Author:
- rhl/hr/gg 2012.09.21
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BackingMapContext
getBackingMapContext()
Return theBackingMapContext
this event was raised from.default String
getCacheName()
Return the name of the cache this event was raised from.PartitionedCacheDispatcher
getDispatcher()
Return thePartitionedCacheDispatcher
this event was raised by.default BackingMapManagerContext
getManagerContext()
Return theBackingMapManagerContext
this event was raised from.default CacheService
getService()
Return theCacheService
this event was raised from.-
Methods inherited from interface com.tangosol.net.events.Event
getType, nextInterceptor
-
-
-
-
Method Detail
-
getDispatcher
PartitionedCacheDispatcher getDispatcher()
Return thePartitionedCacheDispatcher
this event was raised by.- Specified by:
getDispatcher
in interfaceEvent<T extends Enum<T>>
- Returns:
- the
PartitionedCacheDispatcher
this event was raised by
-
getCacheName
default String getCacheName()
Return the name of the cache this event was raised from.- Returns:
- the name of the cache this event was raised from
-
getService
default CacheService getService()
Return theCacheService
this event was raised from.- Returns:
- the
CacheService
this event was raised from
-
getManagerContext
default BackingMapManagerContext getManagerContext()
Return theBackingMapManagerContext
this event was raised from.- Returns:
- the
BackingMapManagerContext
this event was raised from
-
getBackingMapContext
default BackingMapContext getBackingMapContext()
Return theBackingMapContext
this event was raised from.- Returns:
- the
BackingMapContext
this event was raised from
-
-