Uses of Interface
com.hazelcast.core.EntryListener

Packages that use EntryListener
com.hazelcast.client.console This package contains ClientConsoleApp
 
com.hazelcast.client.proxy This package contains client side proxy implementations of the different Hazelcast data structures and operation types 
com.hazelcast.config Provides classes for configuring HazelcastInstance. 
com.hazelcast.console This package contains classes related to ConsoleApp
 
com.hazelcast.core Provides core API interfaces/classes. 
com.hazelcast.map.impl Contains implementation specific classes of com.hazelcast.map package. 
com.hazelcast.map.impl.proxy Contains map proxy implementation and support classes. 
com.hazelcast.multimap.impl Contains classes for Hazelcast MultiMap module. 
com.hazelcast.replicatedmap.impl This package contains the implementation of the replicated map service itself and some connection interfaces only used internally - No public API! 
com.hazelcast.replicatedmap.impl.record This package contains the implementation of the backing data storage for the replicated map implementation 
 

Uses of EntryListener in com.hazelcast.client.console
 

Classes in com.hazelcast.client.console that implement EntryListener
 class ClientConsoleApp
          A demo application to demonstrate a Hazelcast client.
 

Uses of EntryListener in com.hazelcast.client.proxy
 

Methods in com.hazelcast.client.proxy with parameters of type EntryListener
 String ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener)
           
 String ClientMapProxy.addEntryListener(EntryListener<K,V> listener, boolean includeValue)
           
 String ClientMultiMapProxy.addEntryListener(EntryListener<K,V> listener, boolean includeValue)
           
 String ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener, K key)
           
 String ClientMapProxy.addEntryListener(EntryListener<K,V> listener, K key, boolean includeValue)
           
 String ClientMultiMapProxy.addEntryListener(EntryListener<K,V> listener, K key, boolean includeValue)
           
 String ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate)
           
 String ClientMapProxy.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, boolean includeValue)
           
 String ClientReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key)
           
 String ClientMapProxy.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key, boolean includeValue)
           
 String ClientMapProxy.addLocalEntryListener(EntryListener<K,V> listener)
           
 String ClientMultiMapProxy.addLocalEntryListener(EntryListener<K,V> listener)
           
 String ClientMapProxy.addLocalEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, boolean includeValue)
           
 String ClientMapProxy.addLocalEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key, boolean includeValue)
           
 

Uses of EntryListener in com.hazelcast.config
 

Methods in com.hazelcast.config that return EntryListener
 EntryListener EntryListenerConfig.getImplementation()
           
 

Methods in com.hazelcast.config with parameters of type EntryListener
 EntryListenerConfig EntryListenerConfigReadOnly.setImplementation(EntryListener implementation)
           
 EntryListenerConfig EntryListenerConfig.setImplementation(EntryListener implementation)
           
 

Constructors in com.hazelcast.config with parameters of type EntryListener
EntryListenerConfig(EntryListener implementation, boolean local, boolean includeValue)
           
 

Uses of EntryListener in com.hazelcast.console
 

Classes in com.hazelcast.console that implement EntryListener
 class ConsoleApp
          Special thanks to Alexandre Vasseur for providing this very nice test application.
 

Uses of EntryListener in com.hazelcast.core
 

Classes in com.hazelcast.core that implement EntryListener
 class EntryAdapter<K,V>
          Adapter for EntryListener.
 

Methods in com.hazelcast.core with parameters of type EntryListener
 String ReplicatedMap.addEntryListener(EntryListener<K,V> listener)
          Adds an entry listener for this map.
 String IMap.addEntryListener(EntryListener<K,V> listener, boolean includeValue)
          Adds an entry listener for this map.
 String MultiMap.addEntryListener(EntryListener<K,V> listener, boolean includeValue)
          Adds an entry listener for this multimap.
 String ReplicatedMap.addEntryListener(EntryListener<K,V> listener, K key)
          Adds the specified entry listener for the specified key.
 String IMap.addEntryListener(EntryListener<K,V> listener, K key, boolean includeValue)
          Adds the specified entry listener for the specified key.
 String MultiMap.addEntryListener(EntryListener<K,V> listener, K key, boolean includeValue)
          Adds the specified entry listener for the specified key.
 String ReplicatedMap.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate)
          Adds an continuous entry listener for this map.
 String IMap.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, boolean includeValue)
          Adds an continuous entry listener for this map.
 String ReplicatedMap.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key)
          Adds an continuous entry listener for this map.
 String IMap.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key, boolean includeValue)
          Adds an continuous entry listener for this map.
 String IMap.addLocalEntryListener(EntryListener<K,V> listener)
          Adds a local entry listener for this map.
 String MultiMap.addLocalEntryListener(EntryListener<K,V> listener)
          Adds a local entry listener for this multimap.
 String IMap.addLocalEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, boolean includeValue)
          Adds a local entry listener for this map.
 String IMap.addLocalEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key, boolean includeValue)
          Adds a local entry listener for this map.
 

Uses of EntryListener in com.hazelcast.map.impl
 

Methods in com.hazelcast.map.impl with parameters of type EntryListener
 String MapServiceContextEventListenerSupport.addEventListener(EntryListener entryListener, EventFilter eventFilter, String mapName)
           
 String MapServiceContextEventListenerSupport.addLocalEventListener(EntryListener entryListener, EventFilter eventFilter, String mapName)
           
 String MapServiceContextEventListenerSupport.addLocalEventListener(EntryListener entryListener, String mapName)
           
 void MapService.dispatchEvent(EventData event, EntryListener listener)
           
 

Uses of EntryListener in com.hazelcast.map.impl.proxy
 

Methods in com.hazelcast.map.impl.proxy with parameters of type EntryListener
 String MapProxyImpl.addEntryListener(EntryListener<K,V> listener, K key, boolean includeValue)
           
 String MapProxyImpl.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, boolean includeValue)
           
 String MapProxyImpl.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key, boolean includeValue)
           
 String MapProxyImpl.addEntryListener(EntryListener listener, boolean includeValue)
           
 String MapProxyImpl.addLocalEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, boolean includeValue)
           
 String MapProxyImpl.addLocalEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key, boolean includeValue)
           
 

Uses of EntryListener in com.hazelcast.multimap.impl
 

Methods in com.hazelcast.multimap.impl with parameters of type EntryListener
 String ObjectMultiMapProxy.addEntryListener(EntryListener<K,V> listener, boolean includeValue)
           
 String ObjectMultiMapProxy.addEntryListener(EntryListener<K,V> listener, K key, boolean includeValue)
           
 String ObjectMultiMapProxy.addLocalEntryListener(EntryListener<K,V> listener)
           
 void MultiMapService.dispatchEvent(EventData event, EntryListener listener)
           
 

Uses of EntryListener in com.hazelcast.replicatedmap.impl
 

Methods in com.hazelcast.replicatedmap.impl with parameters of type EntryListener
 String ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener)
           
 String ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener, K key)
           
 String ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate)
           
 String ReplicatedMapProxy.addEntryListener(EntryListener<K,V> listener, Predicate<K,V> predicate, K key)
           
 

Uses of EntryListener in com.hazelcast.replicatedmap.impl.record
 

Methods in com.hazelcast.replicatedmap.impl.record with parameters of type EntryListener
 String AbstractReplicatedRecordStore.addEntryListener(EntryListener listener, Object key)
           
 String ReplicatedRecordStore.addEntryListener(EntryListener listener, Object key)
           
 String AbstractReplicatedRecordStore.addEntryListener(EntryListener listener, Predicate predicate, Object key)
           
 String ReplicatedRecordStore.addEntryListener(EntryListener listener, Predicate predicate, Object key)
           
 



Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.