Uses of Interface
org.axonframework.serialization.SerializedType
Packages that use SerializedType
Package
Description
Classes related to message processing in Axon Framework.
-
Uses of SerializedType in org.axonframework.axonserver.connector.event.axon
Methods in org.axonframework.axonserver.connector.event.axon that return SerializedTypeMethods in org.axonframework.axonserver.connector.event.axon with parameters of type SerializedType -
Uses of SerializedType in org.axonframework.axonserver.connector.util
Methods in org.axonframework.axonserver.connector.util that return SerializedType -
Uses of SerializedType in org.axonframework.eventhandling.tokenstore
Methods in org.axonframework.eventhandling.tokenstore that return SerializedTypeModifier and TypeMethodDescriptionAbstractTokenEntry.getTokenType()Returns theSerializedTypeof the serialized token, ornullif no token is stored by this entry. -
Uses of SerializedType in org.axonframework.eventhandling.tokenstore.jpa
Methods in org.axonframework.eventhandling.tokenstore.jpa that return SerializedTypeModifier and TypeMethodDescriptionTokenEntry.getTokenType()Returns theSerializedTypeof the serialized token, ornullif no token is stored by this entry. -
Uses of SerializedType in org.axonframework.serialization
Classes in org.axonframework.serialization that implement SerializedTypeModifier and TypeClassDescriptionclassSerializedType implementation that takes its properties as constructor parameters.Methods in org.axonframework.serialization that return SerializedTypeModifier and TypeMethodDescriptionstatic SerializedTypeSerializedType.emptyType()Returns the type that represents an empty message, of undefined type.static SerializedTypeSimpleSerializedType.emptyType()Returns the type that represents an empty message, of undefined type.SerializedMetaData.getType()SerializedObject.getType()Returns the description of the type of object contained in the data.SimpleSerializedObject.getType()UnknownSerializedType.serializedType()Returns the type of the serialized object, for which no class could be resolved.AbstractXStreamSerializer.typeForClass(Class type) JavaSerializer.typeForClass(Class type) Deprecated.Serializer.typeForClass(Class type) Returns the type identifier for the given class.Methods in org.axonframework.serialization with parameters of type SerializedTypeModifier and TypeMethodDescriptionAbstractXStreamSerializer.classForType(SerializedType type) JavaSerializer.classForType(SerializedType type) Deprecated.Serializer.classForType(SerializedType type) Returns the class for the given type identifier.static booleanSerializedType.isEmptyType(SerializedType serializedType) Check whether theserializedTypeequals} and returns a correspondinginvalid @link
{@link SerializedType#emptyType#getName()trueorfalsewhether this is the case or not.Constructors in org.axonframework.serialization with parameters of type SerializedTypeModifierConstructorDescriptionLazyDeserializingObject(Supplier<SerializedObject<?>> serializedObjectSupplier, SerializedType serializedType, Serializer serializer) Creates an instance which will get the supplied SerializedObject and deserialize it upon request.SimpleSerializedObject(T data, Class<T> dataType, SerializedType serializedType) Initializes a SimpleSerializedObject using givendataandserializedType. -
Uses of SerializedType in org.axonframework.serialization.avro
Methods in org.axonframework.serialization.avro that return SerializedTypeMethods in org.axonframework.serialization.avro with parameters of type SerializedTypeModifier and TypeMethodDescriptionAvroSerializer.classForType(SerializedType type) protected StringAvroSerializer.resolveClassName(SerializedType serializedType) Resolve the class name from the givenserializedType. -
Uses of SerializedType in org.axonframework.serialization.jackson3
Methods in org.axonframework.serialization.jackson3 that return SerializedTypeMethods in org.axonframework.serialization.jackson3 with parameters of type SerializedTypeModifier and TypeMethodDescriptionClass<?> Jackson3Serializer.classForType(SerializedType type) protected StringJackson3Serializer.resolveClassName(SerializedType serializedType) Resolve the class name from the givenserializedType. -
Uses of SerializedType in org.axonframework.serialization.json
Methods in org.axonframework.serialization.json that return SerializedTypeMethods in org.axonframework.serialization.json with parameters of type SerializedTypeModifier and TypeMethodDescriptionJacksonSerializer.classForType(SerializedType type) protected StringJacksonSerializer.resolveClassName(SerializedType serializedType) Resolve the class name from the givenserializedType. -
Uses of SerializedType in org.axonframework.serialization.upcasting.event
Methods in org.axonframework.serialization.upcasting.event that return SerializedTypeModifier and TypeMethodDescriptionInitialEventRepresentation.getType()IntermediateEventRepresentation.getType()Returns the type and version of the data contained in this representation.UpcastedEventRepresentation.getType()protected SerializedTypeEventTypeUpcaster.upcastedType()Retrieve the upcasted eventSerializedType.Methods in org.axonframework.serialization.upcasting.event with parameters of type SerializedTypeModifier and TypeMethodDescriptionInitialEventRepresentation.upcast(SerializedType outputType, Class<T> expectedRepresentationType, Function<T, T> upcastFunction, Function<MetaData, MetaData> metaDataUpcastFunction) IntermediateEventRepresentation.upcast(SerializedType outputType, Class<T> expectedRepresentationType, Function<T, T> upcastFunction, Function<MetaData, MetaData> metaDataUpcastFunction) Upcast the serialized payload of the event (leaving other aspects of the event the same).UpcastedEventRepresentation.upcast(SerializedType outputType, Class<S> expectedRepresentationType, Function<S, S> upcastFunction, Function<MetaData, MetaData> metaDataUpcastFunction) default <T> IntermediateEventRepresentationIntermediateEventRepresentation.upcastPayload(SerializedType outputType, Class<T> expectedRepresentationType, Function<T, T> upcastFunction) Upcast the serialized payload of the event (leaving other aspects of the event the same).Constructors in org.axonframework.serialization.upcasting.event with parameters of type SerializedTypeModifierConstructorDescriptionUpcastedEventRepresentation(SerializedType outputType, IntermediateEventRepresentation source, Function<T, T> upcastFunction, Function<MetaData, MetaData> metaDataUpcastFunction, Class<T> requiredType, Converter converter) Initializes anUpcastedEventRepresentationfrom source data and given upcast functions for payload and metadata.