Uses of Interface
com.hazelcast.map.listener.MapListener
Packages that use MapListener
Package
Description
Provides classes for configuring HazelcastInstance.
This package contains classes related to ConsoleApp
Provides core API interfaces/classes.
Contains Hazelcast map module classes.
Contains various
MapListener interfaces.-
Uses of MapListener in com.hazelcast.config
Methods in com.hazelcast.config that return MapListenerMethods in com.hazelcast.config with parameters of type MapListenerModifier and TypeMethodDescriptionEntryListenerConfig.setImplementation(MapListener implementation) Constructors in com.hazelcast.config with parameters of type MapListenerModifierConstructorDescriptionEntryListenerConfig(MapListener implementation, boolean local, boolean includeValue) -
Uses of MapListener in com.hazelcast.console
Classes in com.hazelcast.console that implement MapListenerModifier and TypeClassDescriptionclassSpecial thanks to Alexandre Vasseur for providing this very nice test application. -
Uses of MapListener in com.hazelcast.core
Subinterfaces of MapListener in com.hazelcast.coreModifier and TypeInterfaceDescriptioninterfaceEntryListener<K,V> Map Entry listener to get notified when a map entry is added, removed, updated, evicted or expired.Classes in com.hazelcast.core that implement MapListener -
Uses of MapListener in com.hazelcast.map
Methods in com.hazelcast.map with parameters of type MapListenerModifier and TypeMethodDescriptionIMap.addEntryListener(MapListener listener, boolean includeValue) Adds aMapListenerfor this map.IMap.addEntryListener(MapListener listener, Predicate<K, V> predicate, boolean includeValue) Adds aMapListenerfor this map.IMap.addEntryListener(MapListener listener, Predicate<K, V> predicate, K key, boolean includeValue) Adds aMapListenerfor this map.IMap.addEntryListener(MapListener listener, K key, boolean includeValue) Adds aMapListenerfor this map.QueryCache.addEntryListener(MapListener listener, boolean includeValue) QueryCache.addEntryListener(MapListener listener, Predicate<K, V> predicate, boolean includeValue) QueryCache.addEntryListener(MapListener listener, Predicate<K, V> predicate, K key, boolean includeValue) QueryCache.addEntryListener(MapListener listener, K key, boolean includeValue) IMap.addLocalEntryListener(MapListener listener) Adds aMapListenerfor this map.IMap.addLocalEntryListener(MapListener listener, Predicate<K, V> predicate, boolean includeValue) Adds aMapListenerfor this map.IMap.addLocalEntryListener(MapListener listener, Predicate<K, V> predicate, K key, boolean includeValue) Adds a local entry listener for this map.QueryCache<K,V> IMap.getQueryCache(String name, MapListener listener, Predicate<K, V> predicate, boolean includeValue) Creates an always up to date snapshot of thisIMapaccording to the supplied parameters. -
Uses of MapListener in com.hazelcast.map.listener
Subinterfaces of MapListener in com.hazelcast.map.listenerModifier and TypeInterfaceDescriptioninterfaceEntryAddedListener<K,V> Invoked upon addition of an entry.interfaceEntryEvictedListener<K,V> Invoked upon size-based-eviction of an entry.interfaceEntryExpiredListener<K,V> Invoked upon expiration-based removal of an entry.interfaceEntryLoadedListener<K,V> Invoked upon load of an entry.interfaceEntryMergedListener<K,V> Invoked after WAN replicated entry is merged.interfaceEntryRemovedListener<K,V> Invoked upon removal of an entry.interfaceEntryUpdatedListener<K,V> Invoked upon update of an entry.interfaceInvoked upon lost of event or events.interfaceInvoked after all entries are removed byIMap.clear().interfaceInvoked after all entries are evicted byIMap.evictAll().interfaceInvoked when owner and all backups of a partition is lost for a specific map.