| Package | Description |
|---|---|
| io.atomix.core.map |
Atomic map primitive.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
AtomicMap.addListener(AtomicMapEventListener<K,V> listener)
Registers the specified listener to be notified whenever the map is updated.
|
default CompletableFuture<Void> |
AsyncAtomicMap.addListener(AtomicMapEventListener<K,V> listener)
Registers the specified listener to be notified whenever the map is updated.
|
void |
AtomicMap.addListener(AtomicMapEventListener<K,V> listener,
Executor executor)
Registers the specified listener to be notified whenever the map is updated.
|
CompletableFuture<Void> |
AsyncAtomicMap.addListener(AtomicMapEventListener<K,V> listener,
Executor executor)
Registers the specified listener to be notified whenever the map is updated.
|
void |
AtomicMap.removeListener(AtomicMapEventListener<K,V> listener)
Unregisters the specified listener such that it will no longer
receive map change notifications.
|
CompletableFuture<Void> |
AsyncAtomicMap.removeListener(AtomicMapEventListener<K,V> listener)
Unregisters the specified listener such that it will no longer
receive map change notifications.
|
Copyright © 2013–2018. All rights reserved.