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 TypeMethodDescriptionvoid
entryDeleted
(CollectionEvent<V> evt) Invoked when a collection entry has been removed.void
entryInserted
(CollectionEvent<V> evt) Invoked when a collection entry has been inserted.void
entryUpdated
(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, wait
Methods inherited from interface com.tangosol.util.CollectionListener
characteristics, isAsynchronous, isSynchronous, isVersionAware
-
Constructor Details
-
AbstractCollectionListener
public AbstractCollectionListener()
-
-
Method Details
-
entryInserted
Description copied from interface:CollectionListener
Invoked when a collection entry has been inserted.- Specified by:
entryInserted
in interfaceCollectionListener<V>
- Parameters:
evt
- the CollectionEvent carrying the insert information
-
entryUpdated
Description copied from interface:CollectionListener
Invoked when a collection entry has been updated.- Specified by:
entryUpdated
in interfaceCollectionListener<V>
- Parameters:
evt
- the CollectionEvent carrying the update information
-
entryDeleted
Description copied from interface:CollectionListener
Invoked when a collection entry has been removed.- Specified by:
entryDeleted
in interfaceCollectionListener<V>
- Parameters:
evt
- the CollectionEvent carrying the delete information
-