Package com.tangosol.util
Class AbstractCollectionListener<V>
java.lang.Object
com.tangosol.util.AbstractCollectionListener<V>
- All Implemented Interfaces:
CollectionListener<V>,EventListener
-
Field Summary
Fields inherited from interface com.tangosol.util.CollectionListener
ASYNCHRONOUS, SYNCHRONOUS, VERSION_AWARE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidentryDeleted(CollectionEvent<V> evt) Invoked when a collection entry has been removed.voidentryInserted(CollectionEvent<V> evt) Invoked when a collection entry has been inserted.voidentryUpdated(CollectionEvent<V> evt) Invoked when a collection 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.CollectionListener
characteristics, isAsynchronous, isSynchronous, isVersionAware
-
Constructor Details
-
AbstractCollectionListener
public AbstractCollectionListener()
-
-
Method Details
-
entryInserted
Description copied from interface:CollectionListenerInvoked when a collection entry has been inserted.- Specified by:
entryInsertedin interfaceCollectionListener<V>- Parameters:
evt- the CollectionEvent carrying the insert information
-
entryUpdated
Description copied from interface:CollectionListenerInvoked when a collection entry has been updated.- Specified by:
entryUpdatedin interfaceCollectionListener<V>- Parameters:
evt- the CollectionEvent carrying the update information
-
entryDeleted
Description copied from interface:CollectionListenerInvoked when a collection entry has been removed.- Specified by:
entryDeletedin interfaceCollectionListener<V>- Parameters:
evt- the CollectionEvent carrying the delete information
-