Package | Description |
---|---|
com.hazelcast.client | |
com.hazelcast.client.impl | |
com.hazelcast.config | |
com.hazelcast.core | |
com.hazelcast.examples | |
com.hazelcast.impl | |
com.hazelcast.jmx |
The com.hazelcast.jmx package contains MBeans and a ManagementService for JMX management JMX support in Hazelcast.
|
Modifier and Type | Method and Description |
---|---|
void |
MultiMapClientProxy.addEntryListener(EntryListener<K,V> listener,
boolean includeValue) |
void |
MapClientProxy.addEntryListener(EntryListener<K,V> listener,
boolean includeValue) |
void |
MultiMapClientProxy.addEntryListener(EntryListener<K,V> listener,
K key,
boolean includeValue) |
void |
MapClientProxy.addEntryListener(EntryListener<K,V> listener,
K key,
boolean includeValue) |
void |
MultiMapClientProxy.addLocalEntryListener(EntryListener<K,V> listener) |
void |
MapClientProxy.addLocalEntryListener(EntryListener<K,V> listener) |
void |
MultiMapClientProxy.removeEntryListener(EntryListener<K,V> listener) |
void |
MapClientProxy.removeEntryListener(EntryListener<K,V> listener) |
void |
MultiMapClientProxy.removeEntryListener(EntryListener<K,V> listener,
K key) |
void |
MapClientProxy.removeEntryListener(EntryListener<K,V> listener,
K key) |
Modifier and Type | Method and Description |
---|---|
void |
EntryListenerManager.registerListener(String name,
Object key,
boolean includeValue,
EntryListener<?,?> entryListener) |
void |
EntryListenerManager.removeListener(String name,
Object key,
EntryListener<?,?> entryListener) |
Modifier and Type | Method and Description |
---|---|
EntryListener |
EntryListenerConfig.getImplementation() |
Modifier and Type | Method and Description |
---|---|
EntryListenerConfig |
EntryListenerConfig.setImplementation(EntryListener implementation) |
Constructor and Description |
---|
EntryListenerConfig(EntryListener implementation,
boolean local,
boolean includeValue) |
Modifier and Type | Class and Description |
---|---|
class |
EntryAdapter<K,V>
Adapter for EntryListener.
|
Modifier and Type | Method and Description |
---|---|
void |
MultiMap.addEntryListener(EntryListener<K,V> listener,
boolean includeValue)
Adds an entry listener for this multimap.
|
void |
IMap.addEntryListener(EntryListener<K,V> listener,
boolean includeValue)
Adds an entry listener for this map.
|
void |
MultiMap.addEntryListener(EntryListener<K,V> listener,
K key,
boolean includeValue)
Adds the specified entry listener for the specified key.
|
void |
IMap.addEntryListener(EntryListener<K,V> listener,
K key,
boolean includeValue)
Adds the specified entry listener for the specified key.
|
void |
MultiMap.addLocalEntryListener(EntryListener<K,V> listener)
Adds a local entry listener for this multimap.
|
void |
IMap.addLocalEntryListener(EntryListener<K,V> listener)
Adds a local entry listener for this map.
|
void |
MultiMap.removeEntryListener(EntryListener<K,V> listener)
Removes the specified entry listener
Returns silently if there is no such listener added before.
|
void |
IMap.removeEntryListener(EntryListener<K,V> listener)
Removes the specified entry listener
Returns silently if there is no such listener added before.
|
void |
MultiMap.removeEntryListener(EntryListener<K,V> listener,
K key)
Removes the specified entry listener for the specified key.
|
void |
IMap.removeEntryListener(EntryListener<K,V> listener,
K key)
Removes the specified entry listener for the specified key.
|
Modifier and Type | Class and Description |
---|---|
class |
TestApp
Special thanks to Alexandre Vasseur for providing this very nice test
application.
|
Modifier and Type | Class and Description |
---|---|
class |
ClientEndpoint |
Modifier and Type | Method and Description |
---|---|
void |
MProxyImpl.addEntryListener(EntryListener listener,
boolean includeValue) |
void |
MultiMapProxyImpl.addEntryListener(EntryListener entryListener,
boolean includeValue) |
void |
MProxyImpl.addEntryListener(EntryListener listener,
Object key,
boolean includeValue) |
void |
MultiMapProxyImpl.addEntryListener(EntryListener entryListener,
Object key,
boolean includeValue) |
void |
MProxyImpl.addLocalEntryListener(EntryListener entryListener) |
void |
MultiMapProxyImpl.addLocalEntryListener(EntryListener entryListener) |
void |
MProxyImpl.removeEntryListener(EntryListener listener) |
void |
MultiMapProxyImpl.removeEntryListener(EntryListener entryListener) |
void |
MProxyImpl.removeEntryListener(EntryListener listener,
Object key) |
void |
MultiMapProxyImpl.removeEntryListener(EntryListener entryListener,
Object key) |
Modifier and Type | Field and Description |
---|---|
protected EntryListener |
MapMBean.listener |
Copyright © 2013 Hazelcast, Inc.. All rights reserved.