Uses of Interface
org.axonframework.conversion.Converter
Packages that use Converter
Package
Description
Part of the Axon Server Connector module.
Part of the Axon Server Connector module.
Axon Server snapshot store implementation.
Classes related to message conversion in Axon Framework.
Part of the Axon Conversion module.
Classes related to message conversion in Axon Framework through Jackson.
Classes related to message conversion in Axon Framework through Jackson 2.
Store-backed snapshotting implementations for event-sourced entities.
Part of the Axon Extension module.
Part of the Axon Extension module.
Classes that implement the concept of command handling using explicit command objects.
Classes related to message processing in Axon Framework.
Part of the Axon Messaging module.
Package for event handling components in Axon Framework.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Package for query handling components in Axon Framework.
-
Uses of Converter in org.axonframework.axonserver.connector.command
Methods in org.axonframework.axonserver.connector.command with parameters of type ConverterModifier and TypeMethodDescriptionstatic CommandMessageCommandConverter.convertCommand(io.axoniq.axonserver.grpc.command.Command command, @Nullable Converter converter) CommandConverter.convertCommandResponse(io.axoniq.axonserver.grpc.command.CommandResponse commandResponse, @Nullable Converter converter) Converts the givencommandResponseto aCommandResultMessage, wrapped in aCompletableFuturefor convenience when dealing withCommandResponsesduringdispatching. -
Uses of Converter in org.axonframework.axonserver.connector.query
Methods in org.axonframework.axonserver.connector.query with parameters of type ConverterModifier and TypeMethodDescriptionstatic QueryResponseMessageQueryConverter.convertQueryResponse(io.axoniq.axonserver.grpc.query.QueryResponse queryResponse, @Nullable Converter converter) Converts aQueryResponseinto aQueryResponseMessage.QueryConverter.convertQueryUpdate(io.axoniq.axonserver.grpc.query.QueryUpdate queryUpdate, @Nullable Converter converter) Converts aQueryUpdateobject into aSubscriptionQueryUpdateMessage.static QueryMessageQueryConverter.convertSubscriptionQueryMessage(io.axoniq.axonserver.grpc.query.SubscriptionQuery query, @Nullable Converter converter) Converts aSubscriptionQueryinto aQueryMessage. -
Uses of Converter in org.axonframework.axonserver.connector.snapshot
Constructors in org.axonframework.axonserver.connector.snapshot with parameters of type ConverterModifierConstructorDescriptionAxonServerSnapshotStore(io.axoniq.axonserver.connector.AxonServerConnection connection, Converter converter) Creates a new instance. -
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.jackson
Classes in org.axonframework.conversion.jackson that implement ConverterModifier and TypeClassDescriptionclassAConverterimplementation that uses Jackson'sObjectMapperto convert objects into and from a JSON format. -
Uses of Converter in org.axonframework.conversion.jackson2
Classes in org.axonframework.conversion.jackson2 that implement ConverterModifier and TypeClassDescriptionclassAConverterimplementation for Jackson 2 that uses Jackson'sObjectMapperto convert objects into and from a JSON format. -
Uses of Converter in org.axonframework.eventsourcing.snapshot.store
Constructors in org.axonframework.eventsourcing.snapshot.store with parameters of type ConverterModifierConstructorDescriptionStoreBackedSnapshotter(SnapshotStore store, MessageType type, Converter converter, Class<E> entityType) Creates a new instance. -
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.JdbcDeadLetterQueueAutoConfiguration.jdbcDeadLetterQueueFactory(DataSource dataSource, EventConverter eventConverter, Converter genericConverter, DeadLetterSchema schema) Creates a JDBC-backedSequencedDeadLetterQueueFactorythat instantiates aJdbcSequencedDeadLetterQueueper event handling component.JpaDeadLetterQueueAutoConfiguration.jpaDeadLetterQueueFactory(jakarta.persistence.EntityManagerFactory entityManagerFactory, EventConverter eventConverter, Converter genericConverter) Creates a JPA-backedSequencedDeadLetterQueueFactorythat instantiates aJpaSequencedDeadLetterQueueper event handling component.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) GenericCommandMessage.withConverter(@Nullable Converter converter) Returns a newGenericCommandMessagewith the same properties as this message and the givenconverterset for use inMessageDecorator.payloadAs(Class).GenericCommandResultMessage.withConverter(@Nullable Converter converter) Returns a newGenericCommandResultMessagewith the same properties as this message and the givenconverterset for use inMessageDecorator.payloadAs(Class). -
Uses of Converter in org.axonframework.messaging.core
Methods in org.axonframework.messaging.core with parameters of type ConverterModifier and TypeMethodDescription<T> @Nullable Tdefault <T> @Nullable TReturns the payload of thisMessage, converted to the giventypeby the givenconverter.<T> @Nullable TReturns the payload of thisMessage, converted to the giventypeby the givenconverter.default <T> @Nullable TMessage.payloadAs(TypeReference<T> type, @Nullable Converter converter) Returns the payload of thisMessage, converted to the giventypeby the givenconverter.<T> @Nullable 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) GenericMessage.withConverter(@Nullable Converter converter) Returns a newGenericMessageinstance with the same payload and properties as this message and the givenconverterto be used for payload conversion. -
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) GenericEventMessage.withConverter(@Nullable Converter converter) Returns a newGenericEventMessagewith the same properties as this message and the givenconverterset for use inMessageDecorator.payloadAs(Class). -
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.deadletter.jdbc
Methods in org.axonframework.messaging.eventhandling.deadletter.jdbc with parameters of type ConverterModifier and TypeMethodDescriptionDefaultDeadLetterJdbcConverter.Builder.genericConverter(Converter genericConverter) Sets theConverterto convert theTrackingTokenand diagnostics.DefaultDeadLetterStatementFactory.Builder.genericConverter(Converter genericConverter) Sets theConverterto convert theTrackingTokenand diagnostics of theDeadLetterwhen storing it to the database.JdbcSequencedDeadLetterQueue.Builder.genericConverter(Converter genericConverter) Sets theConverterto convert the tracking token and diagnostics of theDeadLetterwhen storing it to and retrieving it from the database. -
Uses of Converter in org.axonframework.messaging.eventhandling.deadletter.jpa
Methods in org.axonframework.messaging.eventhandling.deadletter.jpa with parameters of type ConverterModifier and TypeMethodDescriptionDeadLetterJpaConverter.convert(M message, @Nullable Context context, EventConverter eventConverter, Converter genericConverter) DeadLetterJpaConverter.convert(DeadLetterEventEntry entry, EventConverter eventConverter, Converter genericConverter) Converts aDeadLetterEventEntryto aMessageStream.Entrycontaining theEventMessageimplementation and aContextwith restored resources.EventMessageDeadLetterJpaConverter.convert(DeadLetterEventEntry entry, EventConverter eventConverter, Converter genericConverter) EventMessageDeadLetterJpaConverter.convert(EventMessage message, @Nullable Context context, EventConverter eventConverter, Converter genericConverter) JpaSequencedDeadLetterQueue.Builder.genericConverter(Converter genericConverter) Sets theConverterto convert the tracking token and diagnostics of theDeadLetterwhen storing it to and retrieving it from the database.voidDeadLetterEntry.setDiagnostics(Metadata diagnostics, Converter converter) Sets the diagnostics, using the givenConverterto serialize to byte array format.Constructors in org.axonframework.messaging.eventhandling.deadletter.jpa with parameters of type ConverterModifierConstructorDescriptionDeadLetterEntry(String processingGroup, String sequenceIdentifier, long sequenceIndex, DeadLetterEventEntry message, Instant enqueuedAt, Instant lastTouched, Cause cause, Metadata diagnostics, Converter converter) Creates a newDeadLetterEntryconsisting of the given parameters. -
Uses of Converter in org.axonframework.messaging.eventhandling.processing.streaming.token
Methods in org.axonframework.messaging.eventhandling.processing.streaming.token with parameters of type ConverterModifier and TypeMethodDescriptionstatic <T> Optional<T> ReplayToken.replayContext(TrackingToken token, Class<T> type, Converter converter) Extracts theReplayToken.resetContext()from the giventoken, converting it to the giventypewith 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(@Nullable 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(@Nullable TrackingToken token, Converter converter) Initializes a new token entry for giventoken,processandsegment.JdbcTokenStore(TransactionalExecutorProvider<Connection> transactionalExecutorProvider, 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(@Nullable 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(TransactionalExecutorProvider<jakarta.persistence.EntityManager> transactionalExecutorProvider, Converter converter, JpaTokenStoreConfiguration configuration) Instantiate a {JpaTokenStore} based on the fields contained in theJpaTokenStoreConfiguration.TokenEntry(String processorName, Segment segment, @Nullable 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 TypeMethodDescriptionGenericReplayStatusChanged.withConvertedPayload(Type type, Converter converter) GenericResetContext.withConvertedPayload(Type type, Converter converter) default ReplayStatusChangedReplayStatusChanged.withConvertedPayload(Class<?> type, Converter converter) ReplayStatusChanged.withConvertedPayload(Type type, Converter converter) default ReplayStatusChangedReplayStatusChanged.withConvertedPayload(TypeReference<?> 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) GenericQueryMessage.withConverter(@Nullable Converter converter) Returns a newGenericQueryMessagewith the same properties as this message and the givenconverterset for use inMessageDecorator.payloadAs(Class).GenericQueryResponseMessage.withConverter(@Nullable Converter converter) Returns a newGenericQueryResponseMessagewith the same properties as this message and the givenconverterset for use inMessageDecorator.payloadAs(Class).GenericSubscriptionQueryUpdateMessage.withConverter(@Nullable Converter converter) Returns a newGenericSubscriptionQueryUpdateMessagewith the same properties as this message and the givenconverterset for use inMessageDecorator.payloadAs(Class).