Package com.oracle.coherence.grpc.proxy
Class MapListenerProxy.WrapperPrimingListener
java.lang.Object
com.oracle.coherence.grpc.proxy.MapListenerProxy.WrapperPrimingListener
- All Implemented Interfaces:
MapListener<Object,,Object> MapListenerSupport.PrimingListener<Object,,Object> MapListenerSupport.SynchronousListener<Object,,Object> SynchronousListener<Object,,Object> EventListener
- Enclosing class:
MapListenerProxy
public static class MapListenerProxy.WrapperPrimingListener
extends Object
implements MapListenerSupport.PrimingListener<Object,Object>
MapListenerSupport.PrimingListener that delegates calls to the wrapped MapListener.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final MapListener<Object, Object> The wrappedMapListener.Fields inherited from interface com.tangosol.util.MapListener
ASYNCHRONOUS, SYNCHRONOUS, VERSION_AWARE -
Constructor Summary
ConstructorsConstructorDescriptionWrapperPrimingListener(MapListener<Object, Object> wrapped) Constructs a newWrapperPrimingListenerthat will delegate map events to the providedMapListener. -
Method Summary
Modifier and TypeMethodDescriptionvoidentryDeleted(MapEvent<Object, Object> mapEvent) Invoked when a map entry has been removed.voidentryInserted(MapEvent<Object, Object> mapEvent) Invoked when a map entry has been inserted.voidentryUpdated(MapEvent<Object, Object> mapEvent) Invoked when a map entry has been updated.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.tangosol.util.MapListener
isAsynchronous, isSynchronous, isVersionAware, synchronousMethods inherited from interface com.tangosol.util.MapListenerSupport.SynchronousListener
characteristics
-
Field Details
-
f_listenerWrapped
The wrappedMapListener.
-
-
Constructor Details
-
WrapperPrimingListener
Constructs a newWrapperPrimingListenerthat will delegate map events to the providedMapListener.- Parameters:
wrapped- theMapListenerdelegate
-
-
Method Details
-
entryInserted
Description copied from interface:MapListenerInvoked when a map entry has been inserted.- Specified by:
entryInsertedin interfaceMapListener<Object,Object> - Parameters:
mapEvent- the MapEvent carrying the insert information
-
entryUpdated
Description copied from interface:MapListenerInvoked when a map entry has been updated.- Specified by:
entryUpdatedin interfaceMapListener<Object,Object> - Parameters:
mapEvent- the MapEvent carrying the update information
-
entryDeleted
Description copied from interface:MapListenerInvoked when a map entry has been removed.- Specified by:
entryDeletedin interfaceMapListener<Object,Object> - Parameters:
mapEvent- the MapEvent carrying the delete information
-