Package | Description |
---|---|
org.axonframework.eventsourcing.eventstore |
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
|
org.axonframework.eventsourcing.eventstore.jdbc |
JDBC Implementation of the EventStore.
|
org.axonframework.eventsourcing.eventstore.jpa |
JPA Implementation of the EventStore.
|
Modifier and Type | Class and Description |
---|---|
static class |
BatchingEventStorageEngine.Builder
Abstract Builder class to instantiate a
BatchingEventStorageEngine . |
Modifier and Type | Method and Description |
---|---|
AbstractEventStorageEngine.Builder |
AbstractEventStorageEngine.Builder.eventSerializer(Serializer eventSerializer)
Sets the
Serializer used to serialize and deserialize the Event Message's payload and Meta Data with. |
AbstractEventStorageEngine.Builder |
AbstractEventStorageEngine.Builder.persistenceExceptionResolver(PersistenceExceptionResolver persistenceExceptionResolver)
Sets the
PersistenceExceptionResolver used to detect concurrency exceptions from the backing
database. |
AbstractEventStorageEngine.Builder |
AbstractEventStorageEngine.Builder.snapshotFilter(Predicate<? super DomainEventData<?>> snapshotFilter)
Sets the
snapshotFilter deciding whether to take a snapshot into account. |
AbstractEventStorageEngine.Builder |
AbstractEventStorageEngine.Builder.snapshotSerializer(Serializer snapshotSerializer)
Sets the
Serializer used to serialize and deserialize snapshots. |
AbstractEventStorageEngine.Builder |
AbstractEventStorageEngine.Builder.upcasterChain(EventUpcaster upcasterChain)
Sets the
EventUpcaster used to deserialize events of older revisions. |
Constructor and Description |
---|
AbstractEventStorageEngine(AbstractEventStorageEngine.Builder builder)
Instantiate a
AbstractEventStorageEngine based on the fields contained in the AbstractEventStorageEngine.Builder . |
Modifier and Type | Class and Description |
---|---|
static class |
JdbcEventStorageEngine.Builder
Builder class to instantiate a
JdbcEventStorageEngine . |
Modifier and Type | Class and Description |
---|---|
static class |
JpaEventStorageEngine.Builder
Builder class to instantiate a
JpaEventStorageEngine . |
Copyright © 2010–2019. All rights reserved.