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.eventstore.mongo | |
org.axonframework.gae.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 | Method and Description |
---|---|
List<DomainEventMessage> |
StorageStrategy.extractEventMessages(com.mongodb.DBObject entry,
Object aggregateIdentifier,
Serializer serializer,
UpcasterChain upcasterChain,
boolean skipUnknownTypes)
Extracts the individual Event Messages from the given
entry . |
List<DomainEventMessage> |
DocumentPerEventStorageStrategy.extractEventMessages(com.mongodb.DBObject entry,
Object aggregateIdentifier,
Serializer serializer,
UpcasterChain upcasterChain,
boolean skipUnknownTypes) |
List<DomainEventMessage> |
DocumentPerCommitStorageStrategy.extractEventMessages(com.mongodb.DBObject entry,
Object aggregateIdentifier,
Serializer serializer,
UpcasterChain upcasterChain,
boolean skipUnknownTypes) |
void |
MongoEventStore.setUpcasterChain(UpcasterChain upcasterChain) |
Modifier and Type | Method and Description |
---|---|
List<DomainEventMessage> |
EventEntry.getDomainEvent(Object actualAggregateIdentifier,
Serializer serializer,
UpcasterChain upcasterChain,
boolean skipUnknownTypes)
Returns the actual DomainEvent from the EventEntry using the provided Serializer.
|
void |
GaeEventStore.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-2014. All Rights Reserved.