| Package | Description |
|---|---|
| org.axonframework.eventsourcing |
Classes related to event sourcing.
|
| 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.inmemory | |
| org.axonframework.eventsourcing.eventstore.jdbc |
JDBC Implementation of the EventStore.
|
| org.axonframework.eventsourcing.eventstore.legacyjpa |
| Modifier and Type | Class and Description |
|---|---|
class |
FilteringEventStorageEngine
Implementation of EventStorageEngine that delegates to another implementation, while filtering
events as they are appended.
|
| Constructor and Description |
|---|
FilteringEventStorageEngine(EventStorageEngine delegate,
Predicate<? super org.axonframework.eventhandling.EventMessage<?>> filter)
Initializes the FilteringEventStorageEngine delegating all event messages matching the given
filter to
the given delegate. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventStorageEngine
Abstract
EventStorageEngine implementation that takes care of event serialization and upcasting. |
class |
BatchingEventStorageEngine
AbstractEventStorageEngine implementation that fetches events in batches from the backing database. |
class |
SequenceEventStorageEngine
EventStorageEngine implementation that combines the streams of two event storage engines.
|
| Modifier and Type | Field and Description |
|---|---|
protected EventStorageEngine |
AbstractEventStore.Builder.storageEngine |
| Modifier and Type | Method and Description |
|---|---|
protected EventStorageEngine |
AbstractEventStore.storageEngine()
Returns the
EventStorageEngine used by the event store. |
| Modifier and Type | Method and Description |
|---|---|
AbstractEventStore.Builder |
AbstractEventStore.Builder.storageEngine(EventStorageEngine storageEngine)
Sets the
EventStorageEngine used to store and load events. |
EmbeddedEventStore.Builder |
EmbeddedEventStore.Builder.storageEngine(EventStorageEngine storageEngine) |
| Constructor and Description |
|---|
SequenceEventStorageEngine(EventStorageEngine historicStorage,
EventStorageEngine activeStorage)
|
| Modifier and Type | Class and Description |
|---|---|
class |
InMemoryEventStorageEngine
Thread-safe event storage engine that stores events and snapshots in memory.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JdbcEventStorageEngine
An
EventStorageEngine implementation that uses JDBC to store and
fetch events. |
| Modifier and Type | Class and Description |
|---|---|
class |
JpaEventStorageEngine
Deprecated.
in favor of using
JpaEventStorageEngine which
moved to jakarta. |
| Modifier and Type | Method and Description |
|---|---|
EmbeddedEventStore.Builder |
EmbeddedEventStore.Builder.storageEngine(EventStorageEngine storageEngine) |
Copyright © 2010–2024. All rights reserved.