| Package | Description |
|---|---|
| io.atomix.core |
Core APIs for managing Atomix clusters and operating on distributed primitives.
|
| io.atomix.core.map |
Atomic map primitive.
|
| Modifier and Type | Method and Description |
|---|---|
<K extends Comparable<K>,V> |
Atomix.getAtomicNavigableMap(String name) |
<K extends Comparable<K>,V> |
PrimitivesService.getAtomicNavigableMap(String name)
Creates a new
AtomicNavigableMap. |
| Modifier and Type | Method and Description |
|---|---|
AtomicNavigableMap<K,V> |
AtomicNavigableMap.headMap(K toKey,
boolean inclusive)
Returns a view of the portion of this map whose keys are less than (or
equal to, if
inclusive is true) toKey. |
AtomicNavigableMap<K,V> |
AtomicNavigableMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive)
Returns a view of the portion of this map whose keys range from
fromKey to toKey. |
default AtomicNavigableMap<K,V> |
AsyncAtomicNavigableMap.sync() |
AtomicNavigableMap<K,V> |
AsyncAtomicNavigableMap.sync(Duration operationTimeout) |
AtomicNavigableMap<K,V> |
AtomicNavigableMap.tailMap(K fromKey,
boolean inclusive)
Returns a view of the portion of this map whose keys are greater than (or
equal to, if
inclusive is true) fromKey. |
Copyright © 2013–2018. All rights reserved.