Package | Description |
---|---|
org.axonframework.commandhandling.disruptor | |
org.axonframework.eventsourcing |
Classes related to event sourcing.
|
org.axonframework.eventstore |
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
|
org.axonframework.eventstore.fs |
Package containing classes necessary to implement a FileSystem based implementation of the EventStore
|
org.axonframework.eventstore.jdbc |
JDBC Implementation of the EventStore.
|
org.axonframework.eventstore.jpa |
JPA Implementation of the EventStore.
|
org.axonframework.eventstore.mongo | |
org.axonframework.gae.eventstore | |
org.axonframework.quickstart | |
org.axonframework.test |
Classes in support of testing Axon based applications.
|
Constructor and Description |
---|
CommandHandlerInvoker(EventStore eventStore,
Cache cache,
int segmentId)
Create an aggregate invoker instance that uses the given
eventStore and cache to
retrieve aggregate instances. |
DisruptorCommandBus(EventStore eventStore,
EventBus eventBus)
Initialize the DisruptorCommandBus with given resources, using default configuration settings.
|
DisruptorCommandBus(EventStore eventStore,
EventBus eventBus,
DisruptorConfiguration configuration)
Initialize the DisruptorCommandBus with given resources and settings.
|
EventPublisher(EventStore eventStore,
EventBus eventBus,
Executor executor,
TransactionManager transactionManager,
RollbackConfiguration rollbackConfiguration,
int segmentId)
Initializes the EventPublisher to publish Events to the given
eventStore and eventBus
for aggregate of given aggregateType . |
Modifier and Type | Method and Description |
---|---|
void |
HybridJpaRepository.setEventStore(EventStore eventStore)
The event store to which events are appended.
|
Constructor and Description |
---|
CachingEventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore)
Initializes a repository with a the given
aggregateFactory and a pessimistic locking strategy. |
CachingEventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore,
LockManager lockManager)
Initializes a repository with a the given
aggregateFactory and a pessimistic locking strategy. |
EventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore)
Initializes a repository with the default locking strategy, using the given
aggregateFactory to
create new aggregate instances. |
EventSourcingRepository(AggregateFactory<T> aggregateFactory,
EventStore eventStore,
LockManager lockManager)
Initialize a repository with the given locking strategy.
|
EventSourcingRepository(Class<T> aggregateType,
EventStore eventStore)
Initializes a repository with the default locking strategy, using a GenericAggregateFactory to create new
aggregate instances of given
aggregateType . |
EventSourcingRepository(Class<T> aggregateType,
EventStore eventStore,
LockManager lockManager)
Initialize a repository with the given locking strategy, using a GenericAggregateFactory to create new aggregate
instances.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SnapshotEventStore
Interface describing an event store that is able to store snapshot events.
|
Modifier and Type | Class and Description |
---|---|
class |
FileSystemEventStore
Implementation of the
EventStore that serializes objects (by default using
XStream) and
writes them to files to disk. |
Modifier and Type | Class and Description |
---|---|
class |
JdbcEventStore
An EventStore implementation that uses JPA to store DomainEvents in a database.
|
Modifier and Type | Class and Description |
---|---|
class |
JpaEventStore
An EventStore implementation that uses JPA to store DomainEvents in a database.
|
Modifier and Type | Class and Description |
---|---|
class |
MongoEventStore
Implementation of the
EventStore based on a MongoDB instance or replica set. |
Modifier and Type | Class and Description |
---|---|
class |
GaeEventStore
EventStore implementation that uses Google App Engine's DatastoreService to store Event Streams.
|
Modifier and Type | Class and Description |
---|---|
static class |
RunEventReplay.StubEventStore |
Modifier and Type | Method and Description |
---|---|
EventStore |
GivenWhenThenTestFixture.getEventStore() |
EventStore |
FixtureConfiguration.getEventStore()
Returns the event store used by this fixture.
|
Copyright © 2010-2014. All Rights Reserved.