| 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  EntryProcessorto 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  EntryProcessorto the entries in the map which satisfy provided predicate. | 
| <R> R | IMap. executeOnKey(K key,
            EntryProcessor<K,V,R> entryProcessor)Applies the user defined  EntryProcessorto the entry mapped by thekey. | 
| <R> Map<K,R> | IMap. executeOnKeys(Set<K> keys,
             EntryProcessor<K,V,R> entryProcessor)Applies the user defined  EntryProcessorto the entries mapped by the collection of keys. | 
| <R> CompletionStage<R> | IMap. submitToKey(K key,
           EntryProcessor<K,V,R> entryProcessor)Applies the user defined  EntryProcessorto the entry mapped by thekey. | 
| <R> CompletionStage<Map<K,R>> | IMap. submitToKeys(Set<K> keys,
            EntryProcessor<K,V,R> entryProcessor) | 
Copyright © 2021 Hazelcast, Inc.. All rights reserved.