Uses of Interface
org.axonframework.conversion.Converter
Packages that use Converter
Package
Description
Classes related to message processing in Axon Framework.
Classes that implement the concept of command handling using explicit command objects.
Classes related to message processing in Axon Framework.
Classes related to event handling and dispatching, such as
and the
invalid reference
Event Listeners
Event Bus.-
Uses of Converter in org.axonframework.conversion
Classes in org.axonframework.conversion that implement ConverterModifier and TypeClassDescriptionclassAConverterimplementation that will combineContentTypeConvertersto form chains of converters to be able to convert from one type to another, for which there is no suitable single converter.final classAConverterimplementation that only "passes through" input object if thesourceTypeandtargetTypeare the identical. -
Uses of Converter in org.axonframework.conversion.avro
Classes in org.axonframework.conversion.avro that implement ConverterModifier and TypeClassDescriptionclassConverter providing support for Apache Avro, using Single Object Encoded binary encoding. -
Uses of Converter in org.axonframework.conversion.json
Classes in org.axonframework.conversion.json that implement ConverterModifier and TypeClassDescriptionclassAConverterimplementation that uses Jackson'sObjectMapperto convert objects into and from a JSON format. -
Uses of Converter in org.axonframework.extension.spring.authorization
Constructors in org.axonframework.extension.spring.authorization with parameters of type Converter -
Uses of Converter in org.axonframework.extension.springboot.autoconfig
Methods in org.axonframework.extension.springboot.autoconfig that return ConverterModifier and TypeMethodDescriptionConverterAutoConfiguration.converter(ConverterProperties converterProperties) Bean creation method constructing the "general"Converterto be used by Axon Framework.Methods in org.axonframework.extension.springboot.autoconfig with parameters of type ConverterModifier and TypeMethodDescriptionConverterAutoConfiguration.eventConverter(Converter generalConverter, MessageConverter messageConverter, ConverterProperties converterProperties) Bean creation method constructing theEventConverterto be used by Axon Framework.ConverterAutoConfiguration.messageConverter(Converter generalConverter, ConverterProperties converterProperties) Bean creation method constructing theMessageConverterto be used by Axon Framework. -
Uses of Converter in org.axonframework.messaging.commandhandling
Methods in org.axonframework.messaging.commandhandling with parameters of type ConverterModifier and TypeMethodDescriptiondefault CommandMessageCommandMessage.withConvertedPayload(Class<?> type, Converter converter) CommandMessage.withConvertedPayload(Type type, Converter converter) default CommandMessageCommandMessage.withConvertedPayload(TypeReference<?> type, Converter converter) default CommandResultMessageCommandResultMessage.withConvertedPayload(Class<?> type, Converter converter) CommandResultMessage.withConvertedPayload(Type type, Converter converter) default CommandResultMessageCommandResultMessage.withConvertedPayload(TypeReference<?> type, Converter converter) GenericCommandMessage.withConvertedPayload(Type type, Converter converter) GenericCommandResultMessage.withConvertedPayload(Type type, Converter converter) -
Uses of Converter in org.axonframework.messaging.core
Methods in org.axonframework.messaging.core with parameters of type ConverterModifier and TypeMethodDescription<T> Tdefault <T> TReturns the payload of thisMessage, converted to the giventypeby the givenconverter.<T> TReturns the payload of thisMessage, converted to the giventypeby the givenconverter.default <T> TMessage.payloadAs(TypeReference<T> type, Converter converter) Returns the payload of thisMessage, converted to the giventypeby the givenconverter.<T> TGenericMessage.withConvertedPayload(Type type, Converter converter) GenericResultMessage.withConvertedPayload(Type type, Converter converter) default MessageMessage.withConvertedPayload(Class<?> type, Converter converter) Returns a newMessageimplementation with itsMessage.payload()converted to the giventypeby the givenconverter.Message.withConvertedPayload(Type type, Converter converter) Returns a newMessageimplementation with itsMessage.payload()converted to the giventypeby the givenconverter.default MessageMessage.withConvertedPayload(TypeReference<?> type, Converter converter) Returns a newMessageimplementation with itsMessage.payload()converted to the giventypeby the givenconverter.MessageDecorator.withConvertedPayload(Type type, Converter converter) default ResultMessageResultMessage.withConvertedPayload(Class<?> type, Converter converter) ResultMessage.withConvertedPayload(Type type, Converter converter) default ResultMessageResultMessage.withConvertedPayload(TypeReference<?> type, Converter converter) -
Uses of Converter in org.axonframework.messaging.core.conversion
Subinterfaces of Converter in org.axonframework.messaging.core.conversionModifier and TypeInterfaceDescriptioninterfaceA converter specific forMessages, acting on the payload.Classes in org.axonframework.messaging.core.conversion that implement ConverterModifier and TypeClassDescriptionclassAMessageConverterimplementation delegating conversion operations to aConverter.Methods in org.axonframework.messaging.core.conversion that return ConverterModifier and TypeMethodDescriptionDelegatingMessageConverter.delegate()Returns the delegateConverterthisMessageConverterdelegates to.Constructors in org.axonframework.messaging.core.conversion with parameters of type ConverterModifierConstructorDescriptionDelegatingMessageConverter(Converter delegate) Constructs aDelegatingMessageConverter, delegating operations to the givenconverter. -
Uses of Converter in org.axonframework.messaging.eventhandling
Methods in org.axonframework.messaging.eventhandling with parameters of type ConverterModifier and TypeMethodDescriptiondefault EventMessageEventMessage.withConvertedPayload(Class<?> type, Converter converter) EventMessage.withConvertedPayload(Type type, Converter converter) default EventMessageEventMessage.withConvertedPayload(TypeReference<?> type, Converter converter) GenericEventMessage.withConvertedPayload(Type type, Converter converter) -
Uses of Converter in org.axonframework.messaging.eventhandling.conversion
Subinterfaces of Converter in org.axonframework.messaging.eventhandling.conversionModifier and TypeInterfaceDescriptioninterfaceA converter specific forEventMessages, acting on thepayload.Classes in org.axonframework.messaging.eventhandling.conversion that implement ConverterModifier and TypeClassDescriptionclassAnEventConverterimplementation delegating conversion operations to aMessageConverter.Constructors in org.axonframework.messaging.eventhandling.conversion with parameters of type ConverterModifierConstructorDescriptionDelegatingEventConverter(Converter converter) Constructs aDelegatingEventConverter, delegating operations to aDelegatingMessageConverterbuild with the givenconverter. -
Uses of Converter in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jdbc
Methods in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jdbc that return ConverterModifier and TypeMethodDescriptionJdbcTokenStore.converter()Returns the converter used by theTokenStoreto serialize tokens.Methods in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jdbc with parameters of type ConverterModifier and TypeMethodDescriptionReturns the token, deserializing it with givenconverter.final voidJdbcTokenEntry.updateToken(TrackingToken token, Converter converter) Update the token data to the giventoken, using givenconverterto serialize it to bytes[].Constructors in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jdbc with parameters of type ConverterModifierConstructorDescriptionJdbcTokenEntry(TrackingToken token, Converter converter) Initializes a new token entry for giventoken,processandsegment.JdbcTokenStore(ConnectionProvider connectionProvider, Converter converter, JdbcTokenStoreConfiguration configuration) Instantiate aJdbcTokenStorebased on the fields contained in theconfiguration. -
Uses of Converter in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jpa
Methods in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jpa that return ConverterModifier and TypeMethodDescriptionJpaTokenStore.converter()Returns theConverterused by theTokenStoreto serialize tokens.Methods in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jpa with parameters of type ConverterModifier and TypeMethodDescriptionReturns the token, deserializing it with givenserializervoidTokenEntry.updateToken(TrackingToken token, Converter converter) Updates a token, using the provided token and serializer to update the serialized token and token type.Constructors in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jpa with parameters of type ConverterModifierConstructorDescriptionJpaTokenStore(EntityManagerProvider entityManagerProvider, Converter converter, JpaTokenStoreConfiguration configuration) Instantiate a {JpaTokenStore} based on the fields contained in theJpaTokenStoreConfiguration.TokenEntry(String processorName, Segment segment, TrackingToken token, Converter converter) Initializes a new token entry for giventoken,processorNameandsegment. -
Uses of Converter in org.axonframework.messaging.eventhandling.replay
Methods in org.axonframework.messaging.eventhandling.replay with parameters of type ConverterModifier and TypeMethodDescriptionGenericResetContext.withConvertedPayload(Type type, Converter converter) default ResetContextResetContext.withConvertedPayload(Class<?> type, Converter converter) ResetContext.withConvertedPayload(Type type, Converter converter) default ResetContextResetContext.withConvertedPayload(TypeReference<?> type, Converter converter) -
Uses of Converter in org.axonframework.messaging.queryhandling
Methods in org.axonframework.messaging.queryhandling with parameters of type ConverterModifier and TypeMethodDescriptionGenericQueryMessage.withConvertedPayload(Type type, Converter converter) GenericQueryResponseMessage.withConvertedPayload(Type type, Converter converter) GenericSubscriptionQueryUpdateMessage.withConvertedPayload(Type type, Converter converter) default QueryMessageQueryMessage.withConvertedPayload(Class<?> type, Converter converter) QueryMessage.withConvertedPayload(Type type, Converter converter) default QueryMessageQueryMessage.withConvertedPayload(TypeReference<?> type, Converter converter) default QueryResponseMessageQueryResponseMessage.withConvertedPayload(Class<?> type, Converter converter) QueryResponseMessage.withConvertedPayload(Type type, Converter converter) default QueryResponseMessageQueryResponseMessage.withConvertedPayload(TypeReference<?> type, Converter converter) default SubscriptionQueryUpdateMessageSubscriptionQueryUpdateMessage.withConvertedPayload(Class<?> type, Converter converter) SubscriptionQueryUpdateMessage.withConvertedPayload(Type type, Converter converter) default SubscriptionQueryUpdateMessageSubscriptionQueryUpdateMessage.withConvertedPayload(TypeReference<?> type, Converter converter)