Package | Description |
---|---|
com.hazelcast.console |
This package contains classes related to ConsoleApp
|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.map.listener |
Contains various
MapListener interfaces. |
Modifier and Type | Method and Description |
---|---|
void |
ConsoleApp.entryAdded(EntryEvent event) |
void |
ConsoleApp.entryEvicted(EntryEvent event) |
void |
ConsoleApp.entryExpired(EntryEvent<Object,Object> event) |
void |
ConsoleApp.entryRemoved(EntryEvent event) |
void |
ConsoleApp.entryUpdated(EntryEvent event) |
Modifier and Type | Method and Description |
---|---|
void |
EntryAdapter.entryAdded(EntryEvent<K,V> event) |
void |
EntryAdapter.entryEvicted(EntryEvent<K,V> event) |
void |
EntryAdapter.entryExpired(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. |
Modifier and Type | Method and Description |
---|---|
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 |
EntryExpiredListener.entryExpired(EntryEvent<K,V> event)
Invoked upon expiration of an entry.
|
void |
EntryLoadedListener.entryLoaded(EntryEvent<K,V> event)
Invoked upon load 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 © 2022 Hazelcast, Inc.. All rights reserved.