Package | Description |
---|---|
com.hazelcast.client.proxy |
This package contains client side proxy implementations of the different Hazelcast data structures
and operation types
|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.internal.adapter |
Data structure adapters for Near Cache.
|
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.operation |
Package for map operations.
|
com.hazelcast.map.impl.proxy |
Contains map proxy implementation and support classes.
|
Modifier and Type | Method and Description |
---|---|
Map<K,Object> |
ClientMapProxy.executeOnEntries(EntryProcessor entryProcessor) |
Map<K,Object> |
ClientMapProxy.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
Object |
ClientMapProxy.executeOnKey(K key,
EntryProcessor entryProcessor) |
Object |
NearCachedClientMapProxy.executeOnKeyInternal(Object key,
EntryProcessor entryProcessor) |
Object |
ClientMapProxy.executeOnKeyInternal(Object key,
EntryProcessor entryProcessor) |
Map<K,Object> |
ClientMapProxy.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor) |
ICompletableFuture |
ClientMapProxy.submitToKey(K key,
EntryProcessor entryProcessor) |
void |
ClientMapProxy.submitToKey(K key,
EntryProcessor entryProcessor,
ExecutionCallback callback) |
ICompletableFuture |
NearCachedClientMapProxy.submitToKeyInternal(Object key,
EntryProcessor entryProcessor) |
ICompletableFuture |
ClientMapProxy.submitToKeyInternal(Object key,
EntryProcessor entryProcessor) |
void |
NearCachedClientMapProxy.submitToKeyInternal(Object key,
EntryProcessor entryProcessor,
ExecutionCallback callback) |
void |
ClientMapProxy.submitToKeyInternal(Object key,
EntryProcessor entryProcessor,
ExecutionCallback callback) |
ICompletableFuture<Map<K,Object>> |
ClientMapProxy.submitToKeys(Set<K> keys,
EntryProcessor entryProcessor)
|
Modifier and Type | Method and Description |
---|---|
Map<K,Object> |
IMap.executeOnEntries(EntryProcessor entryProcessor)
Applies the user defined
EntryProcessor to the all entries in the map. |
Map<K,Object> |
IMap.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate)
Applies the user defined
EntryProcessor to the entries in the map which satisfy provided predicate. |
Object |
IMap.executeOnKey(K key,
EntryProcessor entryProcessor)
Applies the user defined
EntryProcessor to the entry mapped by the key . |
Map<K,Object> |
IMap.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor)
Applies the user defined
EntryProcessor to the entries mapped by the collection of keys. |
ICompletableFuture |
IMap.submitToKey(K key,
EntryProcessor entryProcessor)
Applies the user defined
EntryProcessor to the entry mapped by the key . |
void |
IMap.submitToKey(K key,
EntryProcessor entryProcessor,
ExecutionCallback callback)
Applies the user defined
EntryProcessor to the entry mapped by the key with
specified ExecutionCallback to listen event status and returns immediately. |
Modifier and Type | Method and Description |
---|---|
Map<K,Object> |
IMapDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor) |
Map<K,Object> |
TransactionalMapDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor) |
Map<K,Object> |
DataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor) |
Map<K,Object> |
ReplicatedMapDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor) |
Map<K,Object> |
ICacheDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor) |
Map<K,Object> |
IMapDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
Map<K,Object> |
TransactionalMapDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
Map<K,Object> |
DataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
Map<K,Object> |
ReplicatedMapDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
Map<K,Object> |
ICacheDataStructureAdapter.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
Object |
IMapDataStructureAdapter.executeOnKey(K key,
EntryProcessor entryProcessor) |
Object |
TransactionalMapDataStructureAdapter.executeOnKey(K key,
EntryProcessor entryProcessor) |
Object |
DataStructureAdapter.executeOnKey(K key,
EntryProcessor entryProcessor) |
Object |
ReplicatedMapDataStructureAdapter.executeOnKey(K key,
EntryProcessor entryProcessor) |
Object |
ICacheDataStructureAdapter.executeOnKey(K key,
EntryProcessor entryProcessor) |
Map<K,Object> |
IMapDataStructureAdapter.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor) |
Map<K,Object> |
TransactionalMapDataStructureAdapter.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor) |
Map<K,Object> |
DataStructureAdapter.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor) |
Map<K,Object> |
ReplicatedMapDataStructureAdapter.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor) |
Map<K,Object> |
ICacheDataStructureAdapter.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractEntryProcessor<K,V>
An abstract
EntryProcessor that already has implemented the AbstractEntryProcessor.getBackupProcessor() . |
Modifier and Type | Class and Description |
---|---|
class |
EntryRemovingProcessor |
Modifier and Type | Method and Description |
---|---|
Future |
LegacyAsyncMap.submitToKey(K key,
EntryProcessor entryProcessor) |
Modifier and Type | Field and Description |
---|---|
protected EntryProcessor |
MultipleEntryOperation.entryProcessor |
protected EntryProcessor |
PartitionWideEntryOperation.entryProcessor |
Constructor and Description |
---|
EntryOperation(String name,
Data dataKey,
EntryProcessor entryProcessor) |
MultipleEntryOperation(String name,
Set<Data> keys,
EntryProcessor entryProcessor) |
MultipleEntryOperationFactory(String name,
Set<Data> keys,
EntryProcessor entryProcessor) |
MultipleEntryWithPredicateOperation(String name,
Set<Data> keys,
EntryProcessor entryProcessor,
Predicate predicate) |
PartitionWideEntryOperation(String name,
EntryProcessor entryProcessor) |
PartitionWideEntryOperationFactory(String name,
EntryProcessor entryProcessor) |
PartitionWideEntryWithPredicateOperation(String name,
EntryProcessor entryProcessor,
Predicate predicate) |
PartitionWideEntryWithPredicateOperationFactory(String name,
EntryProcessor entryProcessor,
Predicate predicate) |
Modifier and Type | Method and Description |
---|---|
Map<K,Object> |
MapProxyImpl.executeOnEntries(EntryProcessor entryProcessor) |
Map<K,Object> |
MapProxyImpl.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate) |
void |
NearCachedMapProxyImpl.executeOnEntriesInternal(EntryProcessor entryProcessor,
Predicate predicate,
List<Data> resultingKeyValuePairs) |
Object |
MapProxyImpl.executeOnKey(K key,
EntryProcessor entryProcessor) |
Data |
NearCachedMapProxyImpl.executeOnKeyInternal(Object key,
EntryProcessor entryProcessor) |
InternalCompletableFuture<Object> |
NearCachedMapProxyImpl.executeOnKeyInternal(Object key,
EntryProcessor entryProcessor,
ExecutionCallback<Object> callback) |
Map<K,Object> |
MapProxyImpl.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor) |
Map<K,Object> |
NearCachedMapProxyImpl.executeOnKeysInternal(Set<K> keys,
Set<Data> dataKeys,
EntryProcessor entryProcessor) |
ICompletableFuture<Map<K,Object>> |
NearCachedMapProxyImpl.executeOnKeysInternalAsync(Set<K> keys,
Set<Data> dataKeys,
EntryProcessor entryProcessor,
ExecutionCallback<Map<K,Object>> callback) |
ICompletableFuture |
MapProxyImpl.submitToKey(K key,
EntryProcessor entryProcessor) |
void |
MapProxyImpl.submitToKey(K key,
EntryProcessor entryProcessor,
ExecutionCallback callback) |
ICompletableFuture<Map<K,Object>> |
MapProxyImpl.submitToKeys(Set<K> keys,
EntryProcessor entryProcessor)
|
Copyright © 2018 Hazelcast, Inc.. All Rights Reserved.