Uses of Class
com.hazelcast.core.EntryEvent

Packages that use EntryEvent
com.hazelcast.client.console This package contains ClientConsoleApp
 
com.hazelcast.client.impl.protocol.task.replicatedmap Client protocol tasks implementations for ReplicatedMap 
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.listener Contains various MapListener interfaces. 
 

Uses of EntryEvent in com.hazelcast.client.console
 

Methods in com.hazelcast.client.console with parameters of type EntryEvent
 void ClientConsoleApp.entryAdded(EntryEvent event)
           
 void ClientConsoleApp.entryEvicted(EntryEvent event)
           
 void ClientConsoleApp.entryRemoved(EntryEvent event)
           
 void ClientConsoleApp.entryUpdated(EntryEvent event)
           
 

Uses of EntryEvent in com.hazelcast.client.impl.protocol.task.replicatedmap
 

Methods in com.hazelcast.client.impl.protocol.task.replicatedmap with parameters of type EntryEvent
 void AbstractReplicatedMapAddEntryListenerMessageTask.entryAdded(EntryEvent<Object,Object> event)
           
 void AbstractReplicatedMapAddEntryListenerMessageTask.entryEvicted(EntryEvent<Object,Object> event)
           
 void AbstractReplicatedMapAddEntryListenerMessageTask.entryRemoved(EntryEvent<Object,Object> event)
           
 void AbstractReplicatedMapAddEntryListenerMessageTask.entryUpdated(EntryEvent<Object,Object> event)
           
 

Uses of EntryEvent in com.hazelcast.console
 

Methods in com.hazelcast.console with parameters of type EntryEvent
 void ConsoleApp.entryAdded(EntryEvent event)
           
 void ConsoleApp.entryEvicted(EntryEvent event)
           
 void ConsoleApp.entryRemoved(EntryEvent event)
           
 void ConsoleApp.entryUpdated(EntryEvent event)
           
 

Uses of EntryEvent in com.hazelcast.core
 

Methods in com.hazelcast.core with parameters of type EntryEvent
 void EntryAdapter.entryAdded(EntryEvent<K,V> event)
           
 void EntryAdapter.entryEvicted(EntryEvent<K,V> event)
           
 void EntryAdapter.entryRemoved(EntryEvent<K,V> event)
           
 void EntryAdapter.entryUpdated(EntryEvent<K,V> event)
           
 void EntryAdapter.onEntryEvent(EntryEvent<K,V> event)
          This method is called when an one of the methods of the EntryListener is not overridden.
 

Uses of EntryEvent in com.hazelcast.map.impl
 

Subclasses of EntryEvent in com.hazelcast.map.impl
 class DataAwareEntryEvent
           
 

Uses of EntryEvent in com.hazelcast.map.listener
 

Methods in com.hazelcast.map.listener with parameters of type EntryEvent
 void EntryAddedListener.entryAdded(EntryEvent<K,V> event)
          Invoked upon addition of an entry.
 void EntryEvictedListener.entryEvicted(EntryEvent<K,V> event)
          Invoked upon eviction of an entry.
 void EntryMergedListener.entryMerged(EntryEvent<K,V> event)
          Invoked after WAN replicated entry is merged.
 void EntryRemovedListener.entryRemoved(EntryEvent<K,V> event)
          Invoked upon removal of an entry.
 void EntryUpdatedListener.entryUpdated(EntryEvent<K,V> event)
          Invoked upon update of an entry.
 



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