| 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.getAtomicSortedMap(String name) |
<K extends Comparable<K>,V> |
PrimitivesService.getAtomicSortedMap(String name)
Creates a new
AtomicSortedMap. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
AtomicNavigableMap<K extends Comparable<K>,V>
Atomic navigable map.
|
| Modifier and Type | Method and Description |
|---|---|
default AtomicSortedMap<K,V> |
AtomicNavigableMap.headMap(K toKey) |
AtomicSortedMap<K,V> |
AtomicSortedMap.headMap(K toKey)
Returns a view of the portion of this map whose keys are strictly less than
toKey. |
default AtomicSortedMap<K,V> |
AtomicNavigableMap.subMap(K fromKey,
K toKey) |
AtomicSortedMap<K,V> |
AtomicSortedMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this map whose keys range from
fromKey, inclusive, to toKey,
exclusive. |
default AtomicSortedMap<K,V> |
AsyncAtomicSortedMap.sync() |
AtomicSortedMap<K,V> |
AsyncAtomicSortedMap.sync(Duration operationTimeout) |
default AtomicSortedMap<K,V> |
AtomicNavigableMap.tailMap(K fromKey) |
AtomicSortedMap<K,V> |
AtomicSortedMap.tailMap(K fromKey)
Returns a view of the portion of this map whose keys are greater than or equal to
fromKey. |
Copyright © 2013–2018. All rights reserved.