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