Package | Description |
---|---|
org.axonframework.axonserver.connector.event.axon | |
org.axonframework.config | |
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.jpa |
JPA Implementation of the EventStore.
|
org.axonframework.springboot.autoconfig |
Modifier and Type | Method and Description |
---|---|
AxonServerEventStore.Builder |
AxonServerEventStore.Builder.storageEngine(EventStorageEngine storageEngine) |
Modifier and Type | Method and Description |
---|---|
Configurer |
Configurer.configureEmbeddedEventStore(Function<Configuration,EventStorageEngine> storageEngineBuilder)
Configures an Embedded Event Store which uses the given Event Storage Engine to store its events.
|
Configurer |
DefaultConfigurer.configureEmbeddedEventStore(Function<Configuration,EventStorageEngine> storageEngineBuilder) |
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 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
EventStorageEngine implementation that uses JDBC to store and fetch events.
|
Modifier and Type | Class and Description |
---|---|
class |
JpaEventStorageEngine
EventStorageEngine implementation that uses JPA to store and fetch events.
|
Modifier and Type | Method and Description |
---|---|
EventStorageEngine |
JdbcAutoConfiguration.eventStorageEngine(Serializer defaultSerializer,
PersistenceExceptionResolver persistenceExceptionResolver,
Serializer eventSerializer,
AxonConfiguration configuration,
ConnectionProvider connectionProvider,
TransactionManager transactionManager) |
EventStorageEngine |
JpaEventStoreAutoConfiguration.eventStorageEngine(Serializer defaultSerializer,
PersistenceExceptionResolver persistenceExceptionResolver,
Serializer eventSerializer,
AxonConfiguration configuration,
EntityManagerProvider entityManagerProvider,
TransactionManager transactionManager) |
Modifier and Type | Method and Description |
---|---|
EmbeddedEventStore |
AxonAutoConfiguration.eventStore(EventStorageEngine storageEngine,
AxonConfiguration configuration) |
Copyright © 2010–2019. All rights reserved.