Package | Description |
---|---|
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 |
Contains Hazelcast map module classes.
|
com.hazelcast.map.listener |
Contains various
MapListener interfaces. |
Modifier and Type | Method and Description |
---|---|
MapListener |
EntryListenerConfig.getImplementation() |
Modifier and Type | Method and Description |
---|---|
EntryListenerConfig |
EntryListenerConfig.setImplementation(MapListener implementation) |
Constructor and Description |
---|
EntryListenerConfig(MapListener implementation,
boolean local,
boolean includeValue) |
Modifier and Type | Class and Description |
---|---|
class |
ConsoleApp
Special thanks to Alexandre Vasseur for providing this very nice test application.
|
Modifier and Type | Interface and Description |
---|---|
interface |
EntryListener<K,V>
Map Entry listener to get notified when a map entry is added,
removed, updated, evicted or expired.
|
Modifier and Type | Class and Description |
---|---|
class |
EntryAdapter<K,V>
Adapter for
MapListener . |
Modifier and Type | Method and Description |
---|---|
UUID |
IMap.addEntryListener(MapListener listener,
boolean includeValue)
Adds a
MapListener for this map. |
UUID |
QueryCache.addEntryListener(MapListener listener,
boolean includeValue) |
UUID |
IMap.addEntryListener(MapListener listener,
K key,
boolean includeValue)
Adds a
MapListener for this map. |
UUID |
QueryCache.addEntryListener(MapListener listener,
K key,
boolean includeValue) |
UUID |
IMap.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue)
Adds a
MapListener for this map. |
UUID |
QueryCache.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
UUID |
IMap.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Adds a
MapListener for this map. |
UUID |
QueryCache.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
UUID |
IMap.addLocalEntryListener(MapListener listener)
Adds a
MapListener for this map. |
UUID |
IMap.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue)
Adds a
MapListener for this map. |
UUID |
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 this
IMap according to
the supplied parameters. |
Modifier and Type | Interface and Description |
---|---|
interface |
EntryAddedListener<K,V>
Invoked upon addition of an entry.
|
interface |
EntryEvictedListener<K,V>
Invoked upon size-based-eviction of an entry.
|
interface |
EntryExpiredListener<K,V>
Invoked upon expiration-based removal of an entry.
|
interface |
EntryLoadedListener<K,V>
Invoked upon load of an entry.
|
interface |
EntryMergedListener<K,V>
Invoked after WAN replicated entry is merged.
|
interface |
EntryRemovedListener<K,V>
Invoked upon removal of an entry.
|
interface |
EntryUpdatedListener<K,V>
Invoked upon update of an entry.
|
interface |
EventLostListener
Invoked upon lost of event or events.
|
interface |
MapClearedListener
Invoked after all entries are removed by
IMap.clear() . |
interface |
MapEvictedListener
Invoked after all entries are evicted by
IMap.evictAll() . |
interface |
MapPartitionLostListener
Invoked when owner and all backups of a partition is lost for a specific map.
|
Copyright © 2023 Hazelcast, Inc.. All rights reserved.