CoherenceTM v3.3
Copyright© 2000-2007 by Oracle Corporation

com.tangosol.util
Interface MapListener

All Superinterfaces:
EventListener
All Known Subinterfaces:
MapListenerSupport.SynchronousListener
All Known Implementing Classes:
AbstractEvictionPolicy, AbstractMapListener, CachingMap.BackMapListener, CachingMap.FrontMapListener, ContinuousQueryCache.AddListener, ContinuousQueryCache.EventRouter, ContinuousQueryCache.RemoveListener, ConverterCollections.ConverterMapListener, LocalCache.InternalListener, MapListenerSupport.WrapperSynchronousListener, MultiplexingMapListener, OverflowMap.BackMapListener, OverflowMap.FrontMapListener, ReadWriteBackingMap.InternalMapListener, SeppukuMapListener, SimpleOverflowMap.FrontMapListener, VersionedBackingMap.InternalMapListener, VersionedNearCache.VersionCacheListener, WrapperObservableMap.InternalListener

public interface MapListener
extends EventListener

The listener interface for receiving MapEvents.

Author:
gg 2002.02.11
See Also:
ObservableMap, MapEvent

Method Summary
 void entryDeleted(MapEvent evt)
          Invoked when a map entry has been removed.
 void entryInserted(MapEvent evt)
          Invoked when a map entry has been inserted.
 void entryUpdated(MapEvent evt)
          Invoked when a map entry has been updated.
 

Method Detail

entryInserted

void entryInserted(MapEvent evt)
Invoked when a map entry has been inserted.

Parameters:
evt - the MapEvent carrying the insert information

entryUpdated

void entryUpdated(MapEvent evt)
Invoked when a map entry has been updated.

Parameters:
evt - the MapEvent carrying the update information

entryDeleted

void entryDeleted(MapEvent evt)
Invoked when a map entry has been removed.

Parameters:
evt - the MapEvent carrying the delete information

CoherenceTM v3.3
Copyright© 2000-2007 by Oracle Corporation