| Interface | Description |
|---|---|
| EventEntryFactory<T> |
Interface describing a factory that creates Entities for the JpaEventStore to persist.
|
| EventEntryStore<T> |
Interface describing the mechanism that stores Events into the backing data store.
|
| PersistenceExceptionResolver | Deprecated
Implement
PersistenceExceptionResolver instead. |
| Class | Description |
|---|---|
| AbstractEventEntry |
Data needed by different types of event logs.
|
| AbstractEventEntryData<T> |
Abstract JPA Entity, which defines all fields except for the payload and metaData field.
|
| AbstractEventEntryData.PK |
Primary key definition of the AbstractEventEntry class.
|
| DefaultEventEntryFactory |
Implementation of the EventEntryFactory that provides the default Axon entities, which store payload and meta data
of Events as byte arrays.
|
| DefaultEventEntryStore<T> |
Implementation of the EventEntryStore that stores events in DomainEventEntry entities and snapshot events in
SnapshotEventEntry entities.
|
| DomainEventEntry |
JPA compliant wrapper around a DomainEvent.
|
| JpaEventStore |
An EventStore implementation that uses JPA to store DomainEvents in a database.
|
| SimpleSerializedDomainEventData<T> |
Simple implementation of the
SerializedDomainEventData class, used to reduce memory consumptions by queries
accessing Event Entries. |
| SnapshotEventEntry |
JPA compatible entry that stores data required for the use of snapshot events.
|
| SQLErrorCodesResolver |
SQLErrorCodesResolver is an implementation of PersistenceExceptionResolver used to resolve sql error codes to see if
it is an duplicate key constraint violation.
|
Copyright © 2010-2014. All Rights Reserved.