| Package | Description |
|---|---|
| com.hazelcast.core |
Provides core API interfaces/classes.
|
| com.hazelcast.map |
Contains Hazelcast map module classes.
|
| 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 | Class and Description |
|---|---|
class |
AbstractEntryProcessor<K,V>
An abstract
EntryProcessor that already has implemented the AbstractEntryProcessor.getBackupProcessor(). |
Copyright © 2019 Hazelcast, Inc.. All Rights Reserved.