Class AbstractMapListener

java.lang.Object
com.tangosol.util.Base
com.tangosol.util.AbstractMapListener
All Implemented Interfaces:
MapListener, EventListener
Direct Known Subclasses:
CachingMap.DeactivationListener, CachingMap.FrontMapListener, ContinuousQueryCache.DeactivationListener, LocalCacheAsynchronousMapListener, MapListenerProxy.DeactivationListener, PartitionedCacheAsynchronousMapListener, PartitionedCacheConfigurationMapListener, PartitionedCacheSyntheticDeleteMapListener, VersionedNearCache.VersionCacheListener

public abstract class AbstractMapListener extends Base implements MapListener
A base class that simplifies the implementation of a MapListener, particularly inner classes that only implement one or two of the three event methods.
Since:
Coherence 3.1
Author:
cp 2006.01.18
  • Constructor Details

    • AbstractMapListener

      public AbstractMapListener()
  • Method Details

    • entryInserted

      public void entryInserted(MapEvent evt)
      Invoked when a map entry has been inserted.
      Specified by:
      entryInserted in interface MapListener
      Parameters:
      evt - the MapEvent carrying the insert information
    • entryUpdated

      public void entryUpdated(MapEvent evt)
      Invoked when a map entry has been updated.
      Specified by:
      entryUpdated in interface MapListener
      Parameters:
      evt - the MapEvent carrying the update information
    • entryDeleted

      public void entryDeleted(MapEvent evt)
      Invoked when a map entry has been removed.
      Specified by:
      entryDeleted in interface MapListener
      Parameters:
      evt - the MapEvent carrying the delete information
    • equals

      public boolean equals(Object oThat)
      Overrides:
      equals in class Object