| Package | Description |
|---|---|
| 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.upcasting |
| Modifier and Type | Method and Description |
|---|---|
void |
FileSystemEventStore.setUpcasterChain(UpcasterChain upcasterChain) |
| Constructor and Description |
|---|
FileSystemBufferedReaderDomainEventStream(InputStream inputStream,
Serializer serializer,
UpcasterChain upcasterChain)
Initialize a BufferedReaderDomainEventStream using the given
inputStream and
serializer. |
| Modifier and Type | Method and Description |
|---|---|
void |
JdbcEventStore.setUpcasterChain(UpcasterChain upcasterChain) |
| Modifier and Type | Method and Description |
|---|---|
void |
JpaEventStore.setUpcasterChain(UpcasterChain upcasterChain) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractUpcasterChain
Abstract implementation of the UpcasterChain interface.
|
class |
LazyUpcasterChain
UpcasterChain implementation that delays the actual upcasting until the data inside the returned SerializedObject is
actually fetched.
|
class |
SimpleUpcasterChain
Represents a series of upcasters which are combined to upcast a
SerializedObject
to the most recent revision of that payload. |
| Modifier and Type | Field and Description |
|---|---|
static UpcasterChain |
SimpleUpcasterChain.EMPTY
Represents an empty UpcasterChain.
|
| Modifier and Type | Method and Description |
|---|---|
void |
UpcasterAware.setUpcasterChain(UpcasterChain upcasterChain)
Sets the UpcasterChain which allow older revisions of serialized objects to be deserialized.
|
static List<DomainEventMessage> |
UpcastUtils.upcastAndDeserialize(SerializedDomainEventData entry,
Object aggregateIdentifier,
Serializer serializer,
UpcasterChain upcasterChain,
boolean skipUnknownTypes)
Upcasts and deserializes the given
entry using the given serializer and
upcasterChain. |
Copyright © 2010-2015. All Rights Reserved.