| Package | Description |
|---|---|
| io.atomix.core |
Core APIs for managing Atomix clusters and operating on distributed primitives.
|
| io.atomix.core.map |
Atomic map primitive.
|
| io.atomix.core.multimap |
Atomic multimap primitive.
|
| io.atomix.core.multiset |
Distributed multiset primitive.
|
| io.atomix.core.set |
Distributed set primitive.
|
| Modifier and Type | Method and Description |
|---|---|
<E> DistributedSet<E> |
Atomix.getSet(String name) |
<E> DistributedSet<E> |
PrimitivesService.getSet(String name)
Creates a new DistributedSet.
|
| Modifier and Type | Method and Description |
|---|---|
DistributedSet<Map.Entry<K,V>> |
DistributedMap.entrySet() |
DistributedSet<Map.Entry<K,Versioned<V>>> |
AtomicMap.entrySet()
Returns the set of entries contained in this map.
|
DistributedSet<K> |
DistributedMap.keySet() |
DistributedSet<K> |
AtomicMap.keySet()
Returns a Set view of the keys contained in this map.
|
| Modifier and Type | Method and Description |
|---|---|
DistributedSet<K> |
AtomicMultimap.keySet()
Returns a set of the keys contained in this multimap with one or more
associated values.
|
DistributedSet<K> |
DistributedMultimap.keySet()
Returns a set of the keys contained in this multimap with one or more
associated values.
|
| Modifier and Type | Method and Description |
|---|---|
DistributedSet<E> |
DistributedMultiset.elementSet() |
DistributedSet<com.google.common.collect.Multiset.Entry<E>> |
DistributedMultiset.entrySet() |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DistributedNavigableSet<E extends Comparable<E>>
Distributed navigable set.
|
interface |
DistributedSortedSet<E extends Comparable<E>>
Distributed sorted set.
|
| Modifier and Type | Method and Description |
|---|---|
default DistributedSet<E> |
AsyncDistributedSet.sync() |
DistributedSet<E> |
AsyncDistributedSet.sync(Duration operationTimeout) |
| Modifier and Type | Method and Description |
|---|---|
PrimitiveResource |
DistributedSetType.newResource(DistributedSet<E> primitive) |
Copyright © 2013–2018. All rights reserved.