Uses of Interface
org.axonframework.serializer.Serializer

Packages that use Serializer
org.axonframework.commandhandling.disruptor   
org.axonframework.eventhandling.io   
org.axonframework.eventstore.fs Package containing classes necessary to implement a FileSystem based implementation of the EventStore 
org.axonframework.eventstore.jpa JPA Implementation of the EventStore. 
org.axonframework.saga.repository.jpa   
org.axonframework.serializer   
org.axonframework.serializer.xml   
 

Uses of Serializer in org.axonframework.commandhandling.disruptor
 

Methods in org.axonframework.commandhandling.disruptor that return Serializer
 Serializer DisruptorConfiguration.getSerializer()
          Returns the serializer to perform pre-serialization with, or null if no pre-serialization should be done.
 

Methods in org.axonframework.commandhandling.disruptor with parameters of type Serializer
 DisruptorConfiguration DisruptorConfiguration.setSerializer(Serializer newSerializer)
          Returns the serializer to perform pre-serialization with, or null if no pre-serialization should be done.
 

Constructors in org.axonframework.commandhandling.disruptor with parameters of type Serializer
SerializerHandler(Serializer serializer, int serializerSegmentId, Class<?> serializedRepresentation)
          Initialize the handler using given serializer and processing the segment Id with given serializerId (in case of multiple serializer threads).
 

Uses of Serializer in org.axonframework.eventhandling.io
 

Constructors in org.axonframework.eventhandling.io with parameters of type Serializer
EventMessageReader(DataInputStream input, Serializer serializer)
          Creates a new EventMessageReader that reads the data from the given input and deserializes payload and meta data using the given serializer.
EventMessageWriter(DataOutput output, Serializer serializer)
          Creates a new EventMessageWriter writing data to the specified underlying output.
 

Uses of Serializer in org.axonframework.eventstore.fs
 

Constructors in org.axonframework.eventstore.fs with parameters of type Serializer
FileSystemBufferedReaderDomainEventStream(InputStream inputStream, Serializer serializer, UpcasterChain upcasterChain)
          Initialize a BufferedReaderDomainEventStream using the given inputStream and serializer.
FileSystemEventMessageWriter(DataOutput output, Serializer serializer)
          Creates a new EventMessageWriter writing data to the specified underlying output.
FileSystemEventStore(Serializer serializer, EventFileResolver eventFileResolver)
          Initialize the FileSystemEventStore using the given serializer.
FileSystemSnapshotEventReader(InputStream eventFile, InputStream snapshotEventFile, Serializer eventSerializer)
          Creates a snapshot event reader that reads the latest snapshot from the snapshotEventFile.
FileSystemSnapshotEventWriter(InputStream eventFile, OutputStream snapshotEventFile, Serializer eventSerializer)
          Creates a snapshot event writer that writes any given snapshotEvent to the given snapshotEventFile.
 

Uses of Serializer in org.axonframework.eventstore.jpa
 

Constructors in org.axonframework.eventstore.jpa with parameters of type Serializer
JpaEventStore(EntityManagerProvider entityManagerProvider, Serializer serializer)
          Initialize a JpaEventStore which serializes events using the given eventSerializer and stores the events in the database using the default EventEntryStore.
JpaEventStore(EntityManagerProvider entityManagerProvider, Serializer serializer, EventEntryStore eventEntryStore)
          Initialize a JpaEventStore which serializes events using the given eventSerializer and stores the events in the database using the given eventEntryStore.
 

Uses of Serializer in org.axonframework.saga.repository.jpa
 

Methods in org.axonframework.saga.repository.jpa with parameters of type Serializer
 Saga SagaEntry.getSaga(Serializer serializer)
          Returns the Saga instance stored in this entry.
 void JpaSagaRepository.setSerializer(Serializer serializer)
          Sets the Serializer instance to serialize Sagas with.
 

Constructors in org.axonframework.saga.repository.jpa with parameters of type Serializer
SagaEntry(Saga saga, Serializer serializer)
          Constructs a new SagaEntry for the given saga.
 

Uses of Serializer in org.axonframework.serializer
 

Classes in org.axonframework.serializer that implement Serializer
 class AbstractXStreamSerializer
          Abstract implementation for XStream based serializers.
 class JavaSerializer
          Serializer implementation that uses Java serialization to serialize and deserialize object instances.
 class MessageSerializer
          Wrapper around a serializer that provides SerializationAware support.
 

Methods in org.axonframework.serializer that return Serializer
 Serializer LazyDeserializingObject.getSerializer()
          Returns the serializer to deserialize this object
 

Methods in org.axonframework.serializer with parameters of type Serializer
static
<T> SerializedObject<T>
MessageSerializer.serializeMetaData(Message<?> message, Serializer serializer, Class<T> expectedRepresentation)
          Utility method that serializes the meta data of the given message using given serializer and expectedRepresentation.
<T> SerializedObject<T>
SerializedObjectHolder.serializeMetaData(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializedMessage.serializeMetaData(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializedEventMessage.serializeMetaData(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializedDomainEventMessage.serializeMetaData(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializationAwareEventMessage.serializeMetaData(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializationAware.serializeMetaData(Serializer serializer, Class<T> expectedRepresentation)
          Serialize the meta data of this message using given serializer, using given expectedRepresentation.
static
<T> SerializedObject<T>
MessageSerializer.serializePayload(Message<?> message, Serializer serializer, Class<T> expectedRepresentation)
          Utility method that serializes the payload of the given message using given serializer and expectedRepresentation.
<T> SerializedObject<T>
SerializedObjectHolder.serializePayload(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializedMessage.serializePayload(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializedEventMessage.serializePayload(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializedDomainEventMessage.serializePayload(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializationAwareEventMessage.serializePayload(Serializer serializer, Class<T> expectedRepresentation)
           
<T> SerializedObject<T>
SerializationAware.serializePayload(Serializer serializer, Class<T> expectedRepresentation)
          Serialize the payload of this message using given serializer, using given expectedRepresentation.
 

Constructors in org.axonframework.serializer with parameters of type Serializer
LazyDeserializingObject(SerializedObject<?> serializedObject, Serializer serializer)
           
MessageSerializer(Serializer serializer)
          Initializes the MessageSerializer as a wrapper around the given serializer.
SerializedDomainEventMessage(SerializedDomainEventData domainEventData, Serializer serializer)
          Reconstructs a DomainEventMessage using the given domainEventData, containing data to be deserialized using the given serializer.
SerializedEventMessage(String eventIdentifier, org.joda.time.DateTime timestamp, SerializedObject<?> serializedPayload, SerializedObject<?> serializedMetaData, Serializer serializer)
          Constructor to reconstruct an EventMessage using serialized data
SerializedMessage(String identifier, SerializedObject<?> serializedPayload, SerializedObject<?> serializedMetaData, Serializer serializer)
          Reconstructs a Message using the given identifier, serializedPayload, serializedMetaData and serializer.
 

Uses of Serializer in org.axonframework.serializer.xml
 

Classes in org.axonframework.serializer.xml that implement Serializer
 class XStreamSerializer
          Serializer that uses XStream to serialize and deserialize arbitrary objects.
 



Copyright © 2010-2012. All Rights Reserved.