Package | Description |
---|---|
com.hazelcast.client.console |
This package contains ClientConsoleApp
|
com.hazelcast.client.impl.protocol.task.replicatedmap |
Client protocol tasks implementations for ReplicatedMap
|
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 |
Contains Hazelcast map module classes.
|
com.hazelcast.map.impl |
Contains implementation specific classes of
com.hazelcast.map package. |
com.hazelcast.map.impl.nearcache |
Contains near-cache specific classes.
|
com.hazelcast.map.impl.proxy |
Contains map proxy implementation and support classes.
|
com.hazelcast.map.listener |
Contains various
MapListener interfaces. |
Modifier and Type | Class and Description |
---|---|
class |
ClientConsoleApp
A demo application to demonstrate a Hazelcast client.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractReplicatedMapAddEntryListenerMessageTask<Parameter> |
class |
ReplicatedMapAddEntryListenerMessageTask |
class |
ReplicatedMapAddEntryListenerToKeyMessageTask |
class |
ReplicatedMapAddEntryListenerToKeyWithPredicateMessageTask |
class |
ReplicatedMapAddEntryListenerWithPredicateMessageTask |
class |
ReplicatedMapAddNearCacheListenerMessageTask |
Modifier and Type | Method and Description |
---|---|
String |
ClientMapProxy.addEntryListener(MapListener listener,
boolean includeValue) |
String |
ClientMapProxy.addEntryListener(MapListener listener,
K key,
boolean includeValue) |
String |
ClientMapProxy.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
ClientMapProxy.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
ClientMapProxy.addLocalEntryListener(MapListener listener) |
String |
ClientMapProxy.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
ClientMapProxy.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
Modifier and Type | Class and Description |
---|---|
static class |
EntryListenerConfig.MapListenerToEntryListenerAdapter
Wraps a MapListener into an EntryListener.
|
Modifier and Type | Method and Description |
---|---|
MapListener |
EntryListenerConfig.MapListenerToEntryListenerAdapter.getMapListener() |
Constructor and Description |
---|
EntryListenerConfig.MapListenerToEntryListenerAdapter(MapListener mapListener) |
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 or evicted.
|
Modifier and Type | Class and Description |
---|---|
class |
EntryAdapter<K,V>
Adapter for
MapListener . |
Modifier and Type | Method and Description |
---|---|
String |
IMap.addEntryListener(MapListener listener,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addEntryListener(MapListener listener,
K key,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addLocalEntryListener(MapListener listener)
Adds a
MapListener for this map. |
String |
IMap.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue)
Adds a
MapListener for this map. |
String |
IMap.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue)
Adds a local entry listener for this map.
|
Modifier and Type | Method and Description |
---|---|
String |
QueryCache.addEntryListener(MapListener listener,
boolean includeValue) |
String |
QueryCache.addEntryListener(MapListener listener,
K key,
boolean includeValue) |
String |
QueryCache.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
QueryCache.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
Modifier and Type | Class and Description |
---|---|
class |
MapListenerAdapter<K,V>
Internal usage only adapter for
MapListener . |
Modifier and Type | Method and Description |
---|---|
static ListenerAdapter[] |
MapListenerAdaptors.createListenerAdapters(MapListener mapListener)
Creates a
ListenerAdapter array
for all event types of EntryEventType . |
Modifier and Type | Interface and Description |
---|---|
interface |
InvalidationListener
Used to receive invalidation events from an
IMap
For example, a client near-cache implementation can listen changes in IMap data and
can remove stale data in its own cache. |
Modifier and Type | Method and Description |
---|---|
String |
MapProxyImpl.addEntryListener(MapListener listener,
boolean includeValue) |
String |
MapProxyImpl.addEntryListener(MapListener listener,
K key,
boolean includeValue) |
String |
MapProxyImpl.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
MapProxyImpl.addEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
String |
MapProxyImpl.addLocalEntryListener(MapListener listener) |
String |
MapProxyImpl.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
boolean includeValue) |
String |
MapProxyImpl.addLocalEntryListener(MapListener listener,
Predicate<K,V> predicate,
K key,
boolean includeValue) |
Modifier and Type | Interface and Description |
---|---|
interface |
EntryAddedListener<K,V>
Invoked upon addition of an entry.
|
interface |
EntryEvictedListener<K,V>
Invoked upon eviction of an entry.
|
interface |
EntryExpiredListener<K,V>
Listener which is notified after removal of an entry due to the expiration-based-eviction.
|
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 |
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 © 2016 Hazelcast, Inc.. All Rights Reserved.