Package | Description |
---|---|
com.hazelcast.map |
Contains Hazelcast map module classes.
|
Modifier and Type | Method and Description |
---|---|
default EntryProcessor<K,V,R> |
EntryProcessor.getBackupProcessor()
Get the entry processor to be applied to backup entries.
|
Modifier and Type | Method and Description |
---|---|
<R> Map<K,R> |
IMap.executeOnEntries(EntryProcessor<K,V,R> entryProcessor)
Applies the user defined
EntryProcessor to the all entries in the map. |
<R> Map<K,R> |
IMap.executeOnEntries(EntryProcessor<K,V,R> entryProcessor,
Predicate<K,V> predicate)
Applies the user defined
EntryProcessor to the entries in the map which satisfy provided predicate. |
<R> R |
IMap.executeOnKey(K key,
EntryProcessor<K,V,R> entryProcessor)
Applies the user defined
EntryProcessor to the entry mapped by the key . |
<R> Map<K,R> |
IMap.executeOnKeys(Set<K> keys,
EntryProcessor<K,V,R> entryProcessor)
Applies the user defined
EntryProcessor to the entries mapped by the collection of keys. |
<R> CompletionStage<R> |
IMap.submitToKey(K key,
EntryProcessor<K,V,R> entryProcessor)
Applies the user defined
EntryProcessor to the entry mapped by the key . |
<R> CompletionStage<Map<K,R>> |
IMap.submitToKeys(Set<K> keys,
EntryProcessor<K,V,R> entryProcessor)
|
Copyright © 2021 Hazelcast, Inc.. All rights reserved.