K - the type of keys maintained by this mapV - the type of mapped valuespublic interface AsyncMap<K,V> extends Map<K,V>
It is required to access async methods of Hazelcast 3 IMap.
| Modifier and Type | Method and Description | 
|---|---|
| CompletionStage<V> | getAsync(K key)Delegates to IMap#getAsync(K) | 
| CompletionStage<Void> | putAllAsync(Map<? extends K,? extends V> items)Asynchronously copies all of the mappings from the specified map to this map. | 
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, valuesCompletionStage<V> getAsync(@Nonnull K key)
CompletionStage<Void> putAllAsync(Map<? extends K,? extends V> items)
Copyright © 2022 Hazelcast, Inc.. All rights reserved.