Uses of Interface
org.axonframework.serialization.upcasting.event.IntermediateEventRepresentation
Packages that use IntermediateEventRepresentation
-
Uses of IntermediateEventRepresentation in org.axonframework.serialization.upcasting.event
Classes in org.axonframework.serialization.upcasting.event that implement IntermediateEventRepresentationModifier and TypeClassDescriptionclassImplementation of anIntermediateEventRepresentationthat contains the original serialized payload and metadata before these have been upcast.classImplementation of anIntermediateEventRepresentationthat contains upcast functions for the payload and metadata of a previous representation.Methods in org.axonframework.serialization.upcasting.event that return IntermediateEventRepresentationModifier and TypeMethodDescriptionprotected IntermediateEventRepresentationEventTypeUpcaster.doUpcast(IntermediateEventRepresentation intermediateRepresentation) InitialEventRepresentation.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).Methods in org.axonframework.serialization.upcasting.event that return types with arguments of type IntermediateEventRepresentationModifier and TypeMethodDescriptionNoOpEventUpcaster.upcast(Stream<IntermediateEventRepresentation> intermediateRepresentations) Methods in org.axonframework.serialization.upcasting.event with parameters of type IntermediateEventRepresentationModifier and TypeMethodDescriptionprotected booleanEventTypeUpcaster.canUpcast(IntermediateEventRepresentation intermediateRepresentation) protected IntermediateEventRepresentationEventTypeUpcaster.doUpcast(IntermediateEventRepresentation intermediateRepresentation) Method parameters in org.axonframework.serialization.upcasting.event with type arguments of type IntermediateEventRepresentationModifier and TypeMethodDescriptionNoOpEventUpcaster.upcast(Stream<IntermediateEventRepresentation> intermediateRepresentations) Constructors in org.axonframework.serialization.upcasting.event with parameters of type IntermediateEventRepresentationModifierConstructorDescriptionUpcastedEventRepresentation(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.