All Methods Instance Methods Concrete Methods
| Modifier and Type |
Method |
Description |
CompletableFuture<Void> |
addListener(org.onosproject.store.service.MultimapEventListener<K,V> listener,
Executor executor) |
|
CompletableFuture<Map<K,Collection<V>>> |
asMap() |
|
CompletableFuture<Void> |
clear() |
|
CompletableFuture<Boolean> |
containsEntry(K key,
V value) |
|
CompletableFuture<Boolean> |
containsKey(K key) |
|
CompletableFuture<Boolean> |
containsValue(V value) |
|
CompletableFuture<Collection<Map.Entry<K,V>>> |
entries() |
|
CompletableFuture<org.onosproject.store.service.Versioned<Collection<? extends V>>> |
get(K key) |
|
CompletableFuture<Boolean> |
isEmpty() |
|
CompletableFuture<org.onosproject.store.service.AsyncIterator<Map.Entry<K,V>>> |
iterator() |
|
CompletableFuture<com.google.common.collect.Multiset<K>> |
keys() |
|
CompletableFuture<Set<K>> |
keySet() |
|
String |
name() |
|
CompletableFuture<Boolean> |
put(K key,
V value) |
|
CompletableFuture<Boolean> |
putAll(Map<K,Collection<? extends V>> mapping) |
|
CompletableFuture<Boolean> |
putAll(K key,
Collection<? extends V> values) |
|
CompletableFuture<org.onosproject.store.service.Versioned<Collection<? extends V>>> |
putAndGet(K key,
V value) |
|
CompletableFuture<Boolean> |
remove(K key,
V value) |
|
CompletableFuture<Boolean> |
removeAll(Map<K,Collection<? extends V>> mapping) |
|
CompletableFuture<org.onosproject.store.service.Versioned<Collection<? extends V>>> |
removeAll(K key) |
|
CompletableFuture<Boolean> |
removeAll(K key,
Collection<? extends V> values) |
|
CompletableFuture<org.onosproject.store.service.Versioned<Collection<? extends V>>> |
removeAndGet(K key,
V value) |
|
CompletableFuture<Void> |
removeListener(org.onosproject.store.service.MultimapEventListener<K,V> listener) |
|
CompletableFuture<org.onosproject.store.service.Versioned<Collection<? extends V>>> |
replaceValues(K key,
Collection<V> values) |
|
CompletableFuture<Integer> |
size() |
|
CompletableFuture<com.google.common.collect.Multiset<V>> |
values() |
|