| Package | Description |
|---|---|
| org.axonframework.eventsourcing |
Classes related to event sourcing.
|
| org.axonframework.eventsourcing.conflictresolution | |
| org.axonframework.eventsourcing.eventstore |
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
|
| Modifier and Type | Field and Description |
|---|---|
protected EventStore |
EventSourcingRepository.Builder.eventStore |
| Modifier and Type | Method and Description |
|---|---|
protected EventStore |
AbstractSnapshotter.getEventStore()
Returns the event store this snapshotter uses to load domain events and store snapshot events.
|
| Modifier and Type | Method and Description |
|---|---|
AbstractSnapshotter.Builder |
AbstractSnapshotter.Builder.eventStore(EventStore eventStore)
Sets the
EventStore instance which this AbstractSnapshotter implementation will store
snapshots in. |
AggregateSnapshotter.Builder |
AggregateSnapshotter.Builder.eventStore(EventStore eventStore) |
EventSourcingRepository.Builder<T> |
EventSourcingRepository.Builder.eventStore(EventStore eventStore)
Sets the
EventStore that holds the event stream this repository needs to event source an Aggregate. |
EventSourcedAggregate<T> |
AggregateCacheEntry.recreateAggregate(org.axonframework.modelling.command.inspection.AggregateModel<T> model,
EventStore eventStore,
org.axonframework.modelling.command.RepositoryProvider repositoryProvider,
SnapshotTriggerDefinition snapshotTriggerDefinition) |
EventSourcedAggregate<T> |
AggregateCacheEntry.recreateAggregate(org.axonframework.modelling.command.inspection.AggregateModel<T> model,
EventStore eventStore,
SnapshotTriggerDefinition snapshotTriggerDefinition) |
| Constructor and Description |
|---|
DefaultConflictResolver(EventStore eventStore,
String aggregateIdentifier,
long expectedVersion,
long actualVersion)
Initializes a
DefaultConflictResolver using the given eventStore to load unseen events since
given expectedVersion. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventStore
Abstract implementation of an
EventStore that uses a EventStorageEngine to store and load events. |
class |
EmbeddedEventStore
Implementation of an
EventStore that stores and fetches events using an EventStorageEngine. |
Copyright © 2010–2024. All rights reserved.