| Package | Description |
|---|---|
| io.atomix.core.map |
Atomic map primitive.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
AsyncAtomicNavigableMap<K extends Comparable<K>,V>
Asynchronous atomic navigable map.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncAtomicSortedMap<K,V> |
AtomicSortedMap.async() |
AsyncAtomicSortedMap<K,V> |
AsyncAtomicSortedMap.headMap(K toKey)
Returns a view of the portion of this map whose keys are strictly less than
toKey. |
default AsyncAtomicSortedMap<K,V> |
AsyncAtomicNavigableMap.headMap(K toKey) |
AsyncAtomicSortedMap<K,V> |
AsyncAtomicSortedMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this map whose keys range from
fromKey, inclusive, to toKey,
exclusive. |
default AsyncAtomicSortedMap<K,V> |
AsyncAtomicNavigableMap.subMap(K fromKey,
K toKey) |
AsyncAtomicSortedMap<K,V> |
AsyncAtomicSortedMap.tailMap(K fromKey)
Returns a view of the portion of this map whose keys are greater than or equal to
fromKey. |
default AsyncAtomicSortedMap<K,V> |
AsyncAtomicNavigableMap.tailMap(K fromKey) |
Copyright © 2013–2018. All rights reserved.