| Package | Description | 
|---|---|
| org.axonframework.boot.autoconfig | |
| 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.mongo.eventsourcing.eventstore | 
| Modifier and Type | Method and Description | 
|---|---|
EventStorageEngine | 
JpaAutoConfiguration.eventStorageEngine(Serializer serializer,
                  PersistenceExceptionResolver persistenceExceptionResolver,
                  Serializer eventSerializer,
                  AxonConfiguration configuration,
                  EntityManagerProvider entityManagerProvider,
                  TransactionManager transactionManager)  | 
| Modifier and Type | Method and Description | 
|---|---|
EmbeddedEventStore | 
AxonAutoConfiguration.eventStore(EventStorageEngine storageEngine,
          AxonConfiguration configuration)  | 
| Modifier and Type | Method and Description | 
|---|---|
Configurer | 
DefaultConfigurer.configureEmbeddedEventStore(Function<Configuration,EventStorageEngine> storageEngineBuilder)  | 
Configurer | 
Configurer.configureEmbeddedEventStore(Function<Configuration,EventStorageEngine> storageEngineBuilder)
Configures an Embedded Event Store which uses the given Event Storage Engine to store its events. 
 | 
| 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 event storage implementation that takes care of event serialization and upcasting. 
 | 
class  | 
BatchingEventStorageEngine
Abstract EventStorageEngine 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 | Method and Description | 
|---|---|
protected EventStorageEngine | 
AbstractEventStore.storageEngine()
Returns the  
EventStorageEngine used by the event store. | 
| Constructor and Description | 
|---|
AbstractEventStore(EventStorageEngine storageEngine)
Initializes an event store with given  
storageEngine and NoOpMessageMonitor. | 
AbstractEventStore(EventStorageEngine storageEngine,
                  MessageMonitor<? super EventMessage<?>> messageMonitor)
Initializes an event store with given  
storageEngine and messageMonitor. | 
EmbeddedEventStore(EventStorageEngine storageEngine)
Initializes an  
EmbeddedEventStore with given storageEngine and default settings. | 
EmbeddedEventStore(EventStorageEngine storageEngine,
                  MessageMonitor<? super EventMessage<?>> monitor)
 | 
EmbeddedEventStore(EventStorageEngine storageEngine,
                  MessageMonitor<? super EventMessage<?>> monitor,
                  int cachedEvents,
                  long fetchDelay,
                  long cleanupDelay,
                  TimeUnit timeUnit)
 | 
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 | Class and Description | 
|---|---|
class  | 
MongoEventStorageEngine
EventStorageEngine implementation that uses Mongo to store and fetch events. 
 | 
Copyright © 2010–2018. All rights reserved.