Skip navigation links

Oracle® Coherence Java API Reference
Release 3.7.1.0

E22843-01


com.tangosol.util
Interface MapListener

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

public interface MapListener
extends java.util.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

Skip navigation links

Oracle® Coherence Java API Reference
Release 3.7.1.0

E22843-01


Copyright © 2000, 2011, Oracle and/or its affiliates. All rights reserved.