Interface RMapAsync<K,V>
-
- Type Parameters:
K- keyV- value
- All Superinterfaces:
RExpirableAsync,RObjectAsync
- All Known Subinterfaces:
RLocalCachedMap<K,V>,RMap<K,V>,RMapCache<K,V>,RMapCacheAsync<K,V>
- All Known Implementing Classes:
RedissonLocalCachedMap,RedissonMap,RedissonMapCache,RedissonTransactionalLocalCachedMap,RedissonTransactionalMap,RedissonTransactionalMapCache
public interface RMapAsync<K,V> extends RExpirableAsync
Async interface for Redis based implementation ofConcurrentMapandMapThis map uses serialized state of key instead of hashCode or equals methods. This map doesn't allow to store
nullas key or value.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RFuture<V>addAndGetAsync(K key, Number delta)Adds the givendeltato the current value by mappedkey.RFuture<V>computeAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)Computes a new mapping for the specified key and its current mapped value.RFuture<V>computeIfAbsentAsync(K key, Function<? super K,? extends V> mappingFunction)Computes a mapping for the specified key if it's not mapped before.RFuture<V>computeIfPresentAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)Computes a mapping for the specified key only if it's already mapped.RFuture<Boolean>containsKeyAsync(Object key)Returnstrueif this map contains map entry mapped by specifiedkey, otherwisefalseRFuture<Boolean>containsValueAsync(Object value)Returnstrueif this map contains any map entry with specifiedvalue, otherwisefalseRFuture<Boolean>fastPutAsync(K key, V value)Stores the specifiedvaluemapped by specifiedkey.RFuture<Boolean>fastPutIfAbsentAsync(K key, V value)Stores the specifiedvaluemapped by specifiedkeyonly if there is no value with specifiedkeystored before.RFuture<Boolean>fastPutIfExistsAsync(K key, V value)Stores the specifiedvaluemapped bykeyonly if mapping already exists.RFuture<Long>fastRemoveAsync(K... keys)Removes map entries mapped by specifiedkeys.RFuture<Boolean>fastReplaceAsync(K key, V value)Replaces previous value with a newvaluemapped by specifiedkey.RFuture<Map<K,V>>getAllAsync(Set<K> keys)Returns map slice contained the mappings with definedkeys.RFuture<V>getAsync(K key)Returns the value mapped by definedkeyornullif value is absent.RFuture<Void>loadAllAsync(boolean replaceExistingValues, int parallelism)Loads all map entries to this Redis map usingMapLoader.RFuture<Void>loadAllAsync(Set<? extends K> keys, boolean replaceExistingValues, int parallelism)Loads map entries usingMapLoaderwhose keys are listed in definedkeysparameter.RFuture<V>mergeAsync(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)Associates specified key with the given value if key isn't already associated with a value.RFuture<Void>putAllAsync(Map<? extends K,? extends V> map)Stores map entries specified inmapobject in batch mode.RFuture<Void>putAllAsync(Map<? extends K,? extends V> map, int batchSize)Stores map entries specified inmapobject in batch mode.RFuture<V>putAsync(K key, V value)Stores the specifiedvaluemapped by specifiedkey.RFuture<V>putIfAbsentAsync(K key, V value)Stores the specifiedvaluemapped by specifiedkeyonly if there is no value with specifiedkeystored before.RFuture<V>putIfExistsAsync(K key, V value)Stores the specifiedvaluemapped bykeyonly if mapping already exists.RFuture<Map<K,V>>randomEntriesAsync(int count)Returns random map entries from this map limited bycountRFuture<Set<K>>randomKeysAsync(int count)Returns random keys from this map limited bycountRFuture<Set<Map.Entry<K,V>>>readAllEntrySetAsync()Read all map entries at onceRFuture<Set<K>>readAllKeySetAsync()Read all keys at onceRFuture<Map<K,V>>readAllMapAsync()Read all map as local instance at onceRFuture<Collection<V>>readAllValuesAsync()Read all values at onceRFuture<Boolean>removeAsync(Object key, Object value)Removes map entry only if it exists with specifiedkeyandvalue.RFuture<V>removeAsync(K key)Removes map entry by specifiedkeyand returns value.RFuture<V>replaceAsync(K key, V value)Replaces previous value with a newvaluemapped by specifiedkey.RFuture<Boolean>replaceAsync(K key, V oldValue, V newValue)Replaces previousoldValuewith anewValuemapped by specifiedkey.RFuture<Integer>sizeAsync()Returns size of this mapRFuture<Integer>valueSizeAsync(K key)Returns size of value mapped by key in bytes-
Methods inherited from interface org.redisson.api.RExpirableAsync
clearExpireAsync, expireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
-
Methods inherited from interface org.redisson.api.RObjectAsync
addListenerAsync, copyAsync, deleteAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
-
-
-
-
Method Detail
-
mergeAsync
RFuture<V> mergeAsync(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
Associates specified key with the given value if key isn't already associated with a value. Otherwise, replaces the associated value with the results of the given remapping function, or removes if the result isnull.- Parameters:
key- - map keyvalue- - value to be merged with the existing value associated with the key or to be associated with the key, if no existing valueremappingFunction- - the function is invoked with the existing value to compute new value- Returns:
- new value associated with the specified key or
nullif no value associated with the key
-
computeAsync
RFuture<V> computeAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
Computes a new mapping for the specified key and its current mapped value.- Parameters:
key- - map keyremappingFunction- - function to compute a value- Returns:
- the new value associated with the specified key, or
nullif none
-
computeIfAbsentAsync
RFuture<V> computeIfAbsentAsync(K key, Function<? super K,? extends V> mappingFunction)
Computes a mapping for the specified key if it's not mapped before.- Parameters:
key- - map keymappingFunction- - function to compute a value- Returns:
- current or new computed value associated with
the specified key, or
nullif the computed value is null
-
computeIfPresentAsync
RFuture<V> computeIfPresentAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
Computes a mapping for the specified key only if it's already mapped.- Parameters:
key- - map keyremappingFunction- - function to compute a value- Returns:
- the new value associated with the specified key, or null if none
-
loadAllAsync
RFuture<Void> loadAllAsync(boolean replaceExistingValues, int parallelism)
Loads all map entries to this Redis map usingMapLoader.- Parameters:
replaceExistingValues- -trueif existed values should be replaced,falseotherwise.parallelism- - parallelism level, used to increase speed of process execution- Returns:
- void
-
loadAllAsync
RFuture<Void> loadAllAsync(Set<? extends K> keys, boolean replaceExistingValues, int parallelism)
Loads map entries usingMapLoaderwhose keys are listed in definedkeysparameter.- Parameters:
keys- - map keysreplaceExistingValues- -trueif existed values should be replaced,falseotherwise.parallelism- - parallelism level, used to increase speed of process execution- Returns:
- void
-
valueSizeAsync
RFuture<Integer> valueSizeAsync(K key)
Returns size of value mapped by key in bytes- Parameters:
key- - map key- Returns:
- size of value
-
getAllAsync
RFuture<Map<K,V>> getAllAsync(Set<K> keys)
Returns map slice contained the mappings with definedkeys.If map doesn't contain value/values for specified key/keys and
MapLoaderis defined then value/values will be loaded in read-through mode.The returned map is NOT backed by the original map.
- Parameters:
keys- - map keys- Returns:
- Map slice
-
putAllAsync
RFuture<Void> putAllAsync(Map<? extends K,? extends V> map)
Stores map entries specified inmapobject in batch mode.If
MapWriteris defined then map entries will be stored in write-through mode.- Parameters:
map- mappings to be stored in this map- Returns:
- void
-
putAllAsync
RFuture<Void> putAllAsync(Map<? extends K,? extends V> map, int batchSize)
Stores map entries specified inmapobject in batch mode. Batch inserted by chunks limited bybatchSizevalue to avoid OOM and/or Redis response timeout error for map with big size.If
MapWriteris defined then map entries are stored in write-through mode.- Parameters:
map- mappings to be stored in this mapbatchSize- - size of map entries batch- Returns:
- void
-
randomKeysAsync
RFuture<Set<K>> randomKeysAsync(int count)
Returns random keys from this map limited bycount- Parameters:
count- - keys amount to return- Returns:
- random keys
-
randomEntriesAsync
RFuture<Map<K,V>> randomEntriesAsync(int count)
Returns random map entries from this map limited bycount- Parameters:
count- - entries amount to return- Returns:
- random entries
-
addAndGetAsync
RFuture<V> addAndGetAsync(K key, Number delta)
Adds the givendeltato the current value by mappedkey. Works only for numeric values!- Parameters:
key- - map keydelta- the value to add- Returns:
- the updated value
-
containsValueAsync
RFuture<Boolean> containsValueAsync(Object value)
Returnstrueif this map contains any map entry with specifiedvalue, otherwisefalse- Parameters:
value- - map value- Returns:
trueif this map contains any map entry with specifiedvalue, otherwisefalse
-
containsKeyAsync
RFuture<Boolean> containsKeyAsync(Object key)
Returnstrueif this map contains map entry mapped by specifiedkey, otherwisefalse- Parameters:
key- - map key- Returns:
trueif this map contains map entry mapped by specifiedkey, otherwisefalse
-
fastRemoveAsync
RFuture<Long> fastRemoveAsync(K... keys)
Removes map entries mapped by specifiedkeys.Works faster than
but not returning the value.removeAsync(Object)If
MapWriteris defined thenkeysare deleted in write-through mode.- Parameters:
keys- - map keys- Returns:
- the number of keys that were removed from the hash, not including specified but non existing keys
-
fastPutAsync
RFuture<Boolean> fastPutAsync(K key, V value)
Stores the specifiedvaluemapped by specifiedkey.Works faster than
but not returning previous value.putAsync(Object, Object)Returns
trueif key is a new key in the hash and value was set orfalseif key already exists in the hash and the value was updated.If
MapWriteris defined then map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key is a new key in the hash and value was set.falseif key already exists in the hash and the value was updated.
-
fastReplaceAsync
RFuture<Boolean> fastReplaceAsync(K key, V value)
Replaces previous value with a newvaluemapped by specifiedkey.Works faster than
but not returning the previous value.replaceAsync(Object, Object)Returns
trueif key exists and value was updated orfalseif key doesn't exists and value wasn't updated.If
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key exists and value was updated.falseif key doesn't exists and value wasn't updated.
-
fastPutIfAbsentAsync
RFuture<Boolean> fastPutIfAbsentAsync(K key, V value)
Stores the specifiedvaluemapped by specifiedkeyonly if there is no value with specifiedkeystored before.Returns
trueif key is a new one in the hash and value was set orfalseif key already exists in the hash and change hasn't been made.Works faster than
but not returning the previous value associated withputIfAbsentAsync(Object, Object)keyIf
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key is a new one in the hash and value was set.falseif key already exists in the hash and change hasn't been made.
-
fastPutIfExistsAsync
RFuture<Boolean> fastPutIfExistsAsync(K key, V value)
Stores the specifiedvaluemapped bykeyonly if mapping already exists.Returns
trueif key is a new one in the hash and value was set orfalseif key already exists in the hash and change hasn't been made.Works faster than
but doesn't return previous value associated withputIfExistsAsync(Object, Object)keyIf
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key already exists in the hash and new value has been stored.falseif key doesn't exist in the hash and value hasn't been set.
-
readAllValuesAsync
RFuture<Collection<V>> readAllValuesAsync()
Read all values at once- Returns:
- values
-
readAllEntrySetAsync
RFuture<Set<Map.Entry<K,V>>> readAllEntrySetAsync()
Read all map entries at once- Returns:
- entries
-
readAllMapAsync
RFuture<Map<K,V>> readAllMapAsync()
Read all map as local instance at once- Returns:
- map
-
getAsync
RFuture<V> getAsync(K key)
Returns the value mapped by definedkeyornullif value is absent.If map doesn't contain value for specified key and
MapLoaderis defined then value will be loaded in read-through mode.- Parameters:
key- the key- Returns:
- the value mapped by defined
keyornullif value is absent
-
putAsync
RFuture<V> putAsync(K key, V value)
Stores the specifiedvaluemapped by specifiedkey. Returns previous value if map entry with specifiedkeyalready existed.If
MapWriteris defined then map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
- previous associated value
-
removeAsync
RFuture<V> removeAsync(K key)
Removes map entry by specifiedkeyand returns value.If
MapWriteris defined thenkeyis deleted in write-through mode.- Parameters:
key- - map key- Returns:
- deleted value,
nullif map entry doesn't exist
-
replaceAsync
RFuture<V> replaceAsync(K key, V value)
Replaces previous value with a newvaluemapped by specifiedkey. Returnsnullif there is no map entry stored before and doesn't store new map entry.If
MapWriteris defined then newvalueis written in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
- previous associated value
or
nullif there is no map entry stored before and doesn't store new map entry
-
replaceAsync
RFuture<Boolean> replaceAsync(K key, V oldValue, V newValue)
Replaces previousoldValuewith anewValuemapped by specifiedkey. Returnsfalseif previous value doesn't exist or equal tooldValue.If
MapWriteris defined thennewValueis written in write-through mode.- Parameters:
key- - map keyoldValue- - map old valuenewValue- - map new value- Returns:
trueif value has been replaced otherwisefalse.
-
removeAsync
RFuture<Boolean> removeAsync(Object key, Object value)
Removes map entry only if it exists with specifiedkeyandvalue.If
MapWriteris defined thenkeyis deleted in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif map entry has been removed otherwisefalse.
-
putIfAbsentAsync
RFuture<V> putIfAbsentAsync(K key, V value)
Stores the specifiedvaluemapped by specifiedkeyonly if there is no value with specifiedkeystored before.If
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
nullif key is a new one in the hash and value was set. Previous value if key already exists in the hash and change hasn't been made.
-
putIfExistsAsync
RFuture<V> putIfExistsAsync(K key, V value)
Stores the specifiedvaluemapped bykeyonly if mapping already exists.If
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
nullif key is doesn't exists in the hash and value hasn't been set. Previous value if key already exists in the hash and new value has been stored.
-
-