Package | Description |
---|---|
org.axonframework.eventsourcing |
Classes related to event sourcing.
|
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 |
Modifier and Type | Method and Description |
---|---|
protected SnapshotEventStore |
AbstractSnapshotter.getEventStore()
Returns the event store this snapshotter uses to load domain events and store snapshot events.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractSnapshotter.setEventStore(SnapshotEventStore eventStore)
Sets the event store where the snapshotter can load domain events and store its 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.
|
Constructor and Description |
---|
GaeSnapshotter(SnapshotEventStore eventStore) |
Copyright © 2010-2014. All Rights Reserved.