Interface RMultimap<K,V>
-
- Type Parameters:
K
- keyV
- value
- All Superinterfaces:
RExpirable
,RExpirableAsync
,RMultimapAsync<K,V>
,RObject
,RObjectAsync
- All Known Subinterfaces:
RListMultimap<K,V>
,RListMultimapCache<K,V>
,RMultimapCache<K,V>
,RSetMultimap<K,V>
,RSetMultimapCache<K,V>
- All Known Implementing Classes:
RedissonListMultimap
,RedissonListMultimapCache
,RedissonMultimap
,RedissonSetMultimap
,RedissonSetMultimapCache
public interface RMultimap<K,V> extends RExpirable, RMultimapAsync<K,V>
Base Multimap interface. Allows to map multiple values per key.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear()
Removes all key-value pairs from the multimap, leaving it empty.boolean
containsEntry(Object key, Object value)
Returnstrue
if this multimap contains at least one key-value pair with the keykey
and the valuevalue
.boolean
containsKey(Object key)
Returnstrue
if this multimap contains at least one key-value pair with the keykey
.boolean
containsValue(Object value)
Returnstrue
if this multimap contains at least one key-value pair with the valuevalue
.Collection<Map.Entry<K,V>>
entries()
Returns a view collection of all key-value pairs contained in this multimap, asMap.Entry
instances.long
fastRemove(K... keys)
Removeskeys
from map by one operation Works faster thanRMultimap.remove
but not returning the value associated withkey
Collection<V>
get(K key)
Returns a view collection of the values associated withkey
in this multimap, if any.Collection<V>
getAll(K key)
Returns all elements at once.RCountDownLatch
getCountDownLatch(K key)
ReturnsRCountDownLatch
instance associated with keyRLock
getFairLock(K key)
ReturnsRLock
instance associated with keyRLock
getLock(K key)
ReturnsRLock
instance associated with keyRPermitExpirableSemaphore
getPermitExpirableSemaphore(K key)
ReturnsRPermitExpirableSemaphore
instance associated with keyRReadWriteLock
getReadWriteLock(K key)
ReturnsRReadWriteLock
instance associated with keyRSemaphore
getSemaphore(K key)
ReturnsRSemaphore
instance associated with keyboolean
isEmpty()
Check is map emptySet<K>
keySet()
Returns a view collection of all distinct keys contained in this multimap.int
keySize()
Returns the count of distinct keys in this multimap.boolean
put(K key, V value)
Stores a key-value pair in this multimap.boolean
putAll(K key, Iterable<? extends V> values)
Stores a key-value pair in this multimap for each ofvalues
, all using the same key,key
.Set<K>
readAllKeySet()
Read all keys at onceboolean
remove(Object key, Object value)
Removes a single key-value pair with the keykey
and the valuevalue
from this multimap, if such exists.Collection<V>
removeAll(Object key)
Removes all values associated with the keykey
.Collection<V>
replaceValues(K key, Iterable<? extends V> values)
Stores a collection of values with the same key, replacing any existing values for that key.int
size()
Returns the number of key-value pairs in this multimap.Collection<V>
values()
Returns a view collection containing the value from each key-value pair contained in this multimap, without collapsing duplicates (sovalues().size() == size()
).-
Methods inherited from interface org.redisson.api.RExpirable
clearExpire, expire, expire, expireAt, expireAt, remainTimeToLive
-
Methods inherited from interface org.redisson.api.RExpirableAsync
clearExpireAsync, expireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
-
Methods inherited from interface org.redisson.api.RMultimapAsync
containsEntryAsync, containsKeyAsync, containsValueAsync, fastRemoveAsync, getAllAsync, keySizeAsync, putAllAsync, putAsync, readAllKeySetAsync, removeAllAsync, removeAsync, replaceValuesAsync, sizeAsync
-
Methods inherited from interface org.redisson.api.RObject
addListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
-
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
-
getCountDownLatch
RCountDownLatch getCountDownLatch(K key)
ReturnsRCountDownLatch
instance associated with key- Parameters:
key
- - map key- Returns:
- countdownlatch
-
getPermitExpirableSemaphore
RPermitExpirableSemaphore getPermitExpirableSemaphore(K key)
ReturnsRPermitExpirableSemaphore
instance associated with key- Parameters:
key
- - map key- Returns:
- permitExpirableSemaphore
-
getSemaphore
RSemaphore getSemaphore(K key)
ReturnsRSemaphore
instance associated with key- Parameters:
key
- - map key- Returns:
- semaphore
-
getFairLock
RLock getFairLock(K key)
ReturnsRLock
instance associated with key- Parameters:
key
- - map key- Returns:
- fairlock
-
getReadWriteLock
RReadWriteLock getReadWriteLock(K key)
ReturnsRReadWriteLock
instance associated with key- Parameters:
key
- - map key- Returns:
- readWriteLock
-
getLock
RLock getLock(K key)
ReturnsRLock
instance associated with key- Parameters:
key
- - map key- Returns:
- lock
-
size
int size()
Returns the number of key-value pairs in this multimap.- Returns:
- size of multimap
-
isEmpty
boolean isEmpty()
Check is map empty- Returns:
true
if empty
-
containsKey
boolean containsKey(Object key)
Returnstrue
if this multimap contains at least one key-value pair with the keykey
.- Parameters:
key
- - map key- Returns:
true
if contains a key
-
containsValue
boolean containsValue(Object value)
Returnstrue
if this multimap contains at least one key-value pair with the valuevalue
.- Parameters:
value
- - map value- Returns:
true
if contains a value
-
containsEntry
boolean containsEntry(Object key, Object value)
Returnstrue
if this multimap contains at least one key-value pair with the keykey
and the valuevalue
.- Parameters:
key
- - map keyvalue
- - map value- Returns:
true
if contains an entry
-
put
boolean put(K key, V value)
Stores a key-value pair in this multimap.Some multimap implementations allow duplicate key-value pairs, in which case
put
always adds a new key-value pair and increases the multimap size by 1. Other implementations prohibit duplicates, and storing a key-value pair that's already in the multimap has no effect.- Parameters:
key
- - map keyvalue
- - map value- Returns:
true
if the method increased the size of the multimap, orfalse
if the multimap already contained the key-value pair and doesn't allow duplicates
-
remove
boolean remove(Object key, Object value)
Removes a single key-value pair with the keykey
and the valuevalue
from this multimap, if such exists. If multiple key-value pairs in the multimap fit this description, which one is removed is unspecified.- Parameters:
key
- - map keyvalue
- - map value- Returns:
true
if the multimap changed
-
putAll
boolean putAll(K key, Iterable<? extends V> values)
Stores a key-value pair in this multimap for each ofvalues
, all using the same key,key
. Equivalent to (but expected to be more efficient than):for (V value : values) { put(key, value); }
In particular, this is a no-op if
values
is empty.- Parameters:
key
- - map keyvalues
- - map values- Returns:
true
if the multimap changed
-
replaceValues
Collection<V> replaceValues(K key, Iterable<? extends V> values)
Stores a collection of values with the same key, replacing any existing values for that key.If
values
is empty, this is equivalent toremoveAll(key)
.- Parameters:
key
- - map keyvalues
- - map values- Returns:
- the collection of replaced values, or an empty collection if no values were previously associated with the key. The collection may be modifiable, but updating it will have no effect on the multimap.
-
removeAll
Collection<V> removeAll(Object key)
Removes all values associated with the keykey
.Once this method returns,
key
will not be mapped to any valuesUse
fastRemove(K...)
if values are not needed.- Parameters:
key
- - map key- Returns:
- the values that were removed (possibly empty). The returned collection may be modifiable, but updating it will have no effect on the multimap.
-
clear
void clear()
Removes all key-value pairs from the multimap, leaving it empty.
-
get
Collection<V> get(K key)
Returns a view collection of the values associated withkey
in this multimap, if any. Note that whencontainsKey(key)
is false, this returns an empty collection, notnull
.Changes to the returned collection will update the underlying multimap, and vice versa.
- Parameters:
key
- - map key- Returns:
- collection of values
-
getAll
Collection<V> getAll(K key)
Returns all elements at once. Result collection is NOT backed by map, so changes are not reflected in map.- Parameters:
key
- - map key- Returns:
- collection of values
-
keySet
Set<K> keySet()
Returns a view collection of all distinct keys contained in this multimap. Note that the key set contains a key if and only if this multimap maps that key to at least one value.Changes to the returned set will update the underlying multimap, and vice versa. However, adding to the returned set is not possible.
- Returns:
- set of keys
-
keySize
int keySize()
Returns the count of distinct keys in this multimap.- Returns:
- keys amount
-
values
Collection<V> values()
Returns a view collection containing the value from each key-value pair contained in this multimap, without collapsing duplicates (sovalues().size() == size()
).Changes to the returned collection will update the underlying multimap, and vice versa. However, adding to the returned collection is not possible.
- Returns:
- collection of values
-
entries
Collection<Map.Entry<K,V>> entries()
Returns a view collection of all key-value pairs contained in this multimap, asMap.Entry
instances.Changes to the returned collection or the entries it contains will update the underlying multimap, and vice versa. However, adding to the returned collection is not possible.
- Returns:
- collection of entries
-
fastRemove
long fastRemove(K... keys)
Removeskeys
from map by one operation Works faster thanRMultimap.remove
but not returning the value associated withkey
- Parameters:
keys
- - map keys- Returns:
- the number of keys that were removed from the hash, not including specified but non existing keys
-
-