Interface PartitionedCacheDispatcher
-
- All Superinterfaces:
CacheLifecycleEventDispatcher
,EventDispatcher
public interface PartitionedCacheDispatcher extends CacheLifecycleEventDispatcher
A PartitionedCacheDispatcher raises the following server-sideEvent
s pertaining to backing-map operations:- Since:
- Coherence 12.1.2
- Author:
- rhan, nsa, rhl, hr 2011.03.29
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.tangosol.net.events.EventDispatcher
EventDispatcher.InterceptorRegistrationEvent<E extends Event<? extends Enum>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BackingMapContext
getBackingMapContext()
Return theBackingMapContext
for this dispatcher.default String
getCacheName()
Return the name of thecache
that this PartitionedCacheDispatcher is associated with.default String
getScopeName()
Return the optional scope name that this dispatcher is associated with.default String
getServiceName()
Return the name of theservice
that this PartitionedCacheDispatcher is associated with.-
Methods inherited from interface com.tangosol.net.events.EventDispatcher
addEventInterceptor, addEventInterceptor, addEventInterceptor, getSupportedTypes, removeEventInterceptor, removeEventInterceptor
-
-
-
-
Method Detail
-
getBackingMapContext
BackingMapContext getBackingMapContext()
Return theBackingMapContext
for this dispatcher.- Returns:
- the BackingMapContext for this dispatcher
-
getCacheName
default String getCacheName()
Return the name of thecache
that this PartitionedCacheDispatcher is associated with.- Specified by:
getCacheName
in interfaceCacheLifecycleEventDispatcher
- Returns:
- the cache name
-
getServiceName
default String getServiceName()
Return the name of theservice
that this PartitionedCacheDispatcher is associated with.- Specified by:
getServiceName
in interfaceCacheLifecycleEventDispatcher
- Returns:
- the service name
-
getScopeName
default String getScopeName()
Description copied from interface:CacheLifecycleEventDispatcher
Return the optional scope name that this dispatcher is associated with.- Specified by:
getScopeName
in interfaceCacheLifecycleEventDispatcher
- Returns:
- the scope name that this dispatcher is associated with or
null
if this dispatcher is not associated with a scope.
-
-