public interface RemoteMultimapCache<K,V> extends BasicMultimapCache<K,V>
Remote MultimapCache interface used for server mode.
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<MetadataCollection<V>> |
getWithMetadata(K key)
Returns a
MetadataCollection of the values associated with key in this multimap cache,
if any. |
containsEntry, containsKey, containsValue, get, put, remove, remove, size, supportsDuplicatesCompletableFuture<MetadataCollection<V>> getWithMetadata(K key)
MetadataCollection of the values associated with key in this multimap cache,
if any. Any changes to the retrieved collection won't change the values in this multimap cache.
When this method returns an empty metadata collection, it means the key was not found.key - to be retrievedCopyright © 2021 JBoss by Red Hat. All rights reserved.