| Package | Description |
|---|---|
| io.atomix.primitive |
Provides classes and interfaces for defining and managing primitive types.
|
| io.atomix.primitive.protocol.map |
Interfaces for map-compatible gossip protocols and delegates.
|
| io.atomix.primitive.protocol.set |
Interfaces for set-compatible gossip protocols and delegates.
|
| io.atomix.primitive.protocol.value |
Interfaces for value-compatible gossip protocols and delegates.
|
| io.atomix.primitive.service |
Provides classes and interfaces for defining distributed primitive state machines.
|
| io.atomix.protocols.gossip | |
| io.atomix.protocols.gossip.map | |
| io.atomix.protocols.gossip.set | |
| io.atomix.protocols.gossip.value | |
| io.atomix.protocols.raft.service |
Provides classes for managing Raft-based primitive services.
|
| io.atomix.protocols.raft.session |
Provides a
Session implementation for the Raft consensus protocol. |
| io.atomix.utils.serializer |
Provides classes and interfaces for binary serialization.
|
| Modifier and Type | Method and Description |
|---|---|
B |
PrimitiveBuilder.withSerializer(Serializer serializer)
Sets the primitive serializer.
|
| Modifier and Type | Method and Description |
|---|---|
<K,V> MapDelegate<K,V> |
MapProtocol.newMapDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService)
Returns a new map delegate.
|
<K,V> NavigableMapDelegate<K,V> |
NavigableMapProtocol.newNavigableMapDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService)
Returns a new navigable map delegate.
|
<K,V> NavigableMapDelegate<K,V> |
SortedMapProtocol.newSortedMapDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService)
Returns a new sorted map delegate.
|
| Modifier and Type | Method and Description |
|---|---|
<E> NavigableSetDelegate<E> |
NavigableSetProtocol.newNavigableSetDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService)
Returns a new set delegate.
|
<E> SetDelegate<E> |
SetProtocol.newSetDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService)
Returns a new set delegate.
|
<E> SortedSetDelegate<E> |
SortedSetProtocol.newSortedSetDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService)
Returns a new set delegate.
|
| Modifier and Type | Method and Description |
|---|---|
ValueDelegate |
ValueProtocol.newValueDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService)
Returns a new value delegate.
|
| Modifier and Type | Method and Description |
|---|---|
Serializer |
AbstractPrimitiveService.serializer() |
Serializer |
PrimitiveService.serializer()
Returns the primitive service serializer.
|
| Modifier and Type | Method and Description |
|---|---|
<K,V> MapDelegate<K,V> |
AntiEntropyProtocol.newMapDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService) |
<E> NavigableSetDelegate<E> |
CrdtProtocol.newNavigableSetDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService) |
<E> SetDelegate<E> |
CrdtProtocol.newSetDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService) |
<E> SetDelegate<E> |
AntiEntropyProtocol.newSetDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService) |
<E> SortedSetDelegate<E> |
CrdtProtocol.newSortedSetDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService) |
ValueDelegate |
CrdtProtocol.newValueDelegate(String name,
Serializer serializer,
PrimitiveManagementService managementService) |
| Constructor and Description |
|---|
AntiEntropyMapDelegate(String name,
Serializer entrySerializer,
AntiEntropyProtocolConfig config,
PrimitiveManagementService managementService) |
| Constructor and Description |
|---|
AntiEntropySetDelegate(String name,
Serializer serializer,
AntiEntropyProtocolConfig config,
PrimitiveManagementService managementService) |
CrdtNavigableSetDelegate(String name,
Serializer serializer,
CrdtProtocolConfig config,
PrimitiveManagementService managementService) |
CrdtSetDelegate(String name,
Serializer serializer,
CrdtProtocolConfig config,
PrimitiveManagementService managementService) |
| Constructor and Description |
|---|
CrdtValueDelegate(String name,
Serializer serializer,
CrdtProtocolConfig config,
PrimitiveManagementService managementService) |
| Modifier and Type | Method and Description |
|---|---|
Serializer |
RaftServiceContext.serializer() |
| Constructor and Description |
|---|
RaftSession(SessionId sessionId,
MemberId member,
String name,
PrimitiveType primitiveType,
ReadConsistency readConsistency,
long minTimeout,
long maxTimeout,
long lastUpdated,
Serializer serializer,
RaftServiceContext context,
io.atomix.protocols.raft.impl.RaftContext server,
io.atomix.utils.concurrent.ThreadContextFactory threadContextFactory) |
| Modifier and Type | Method and Description |
|---|---|
static Serializer |
Serializer.using(Namespace namespace)
Creates a new Serializer instance from a Namespace.
|
Copyright © 2013–2018. All rights reserved.