Uses of Interface
org.axonframework.serialization.upcasting.event.EventUpcaster
Packages that use EventUpcaster
Package
Description
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus.Classes related to event sourcing.
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
JDBC Implementation of the EventStore.
JPA Implementation of the EventStore.
-
Uses of EventUpcaster in org.axonframework.axonserver.connector.event.axon
Methods in org.axonframework.axonserver.connector.event.axon with parameters of type EventUpcasterModifier and TypeMethodDescriptionAxonServerEventStore.Builder.upcasterChain(EventUpcaster upcasterChain) Sets theEventUpcasterused to deserialize events of older revisions.AxonServerEventStoreFactory.Builder.upcasterChain(EventUpcaster upcasterChain) Sets theupcaster ch ainused to deserialize events of older revisions.Constructors in org.axonframework.axonserver.connector.event.axon with parameters of type EventUpcasterModifierConstructorDescriptionEventBuffer(io.axoniq.axonserver.connector.event.EventStream delegate, EventUpcaster upcasterChain, Serializer serializer, boolean disableIgnoredEventFiltering) Initializes an Event Buffer, passing messages through givenupcasterChainand deserializing events using givenserializer. -
Uses of EventUpcaster in org.axonframework.config
Method parameters in org.axonframework.config with type arguments of type EventUpcasterModifier and TypeMethodDescriptionConfigurer.registerEventUpcaster(Function<Configuration, EventUpcaster> upcasterBuilder) Registers an upcaster to be used to upcast Events to a newer versionDefaultConfigurer.registerEventUpcaster(Function<Configuration, EventUpcaster> upcasterBuilder) -
Uses of EventUpcaster in org.axonframework.eventhandling
Methods in org.axonframework.eventhandling with parameters of type EventUpcasterModifier and TypeMethodDescriptionstatic Stream<TrackedEventMessage<?>> EventUtils.upcastAndDeserializeTrackedEvents(Stream<? extends TrackedEventData<?>> eventEntryStream, Serializer serializer, EventUpcaster upcasterChain) Upcasts and deserializes the giveneventEntryStreamusing the givenserializerandupcasterChain. -
Uses of EventUpcaster in org.axonframework.eventsourcing
Methods in org.axonframework.eventsourcing with parameters of type EventUpcasterModifier and TypeMethodDescriptionstatic DomainEventStreamEventStreamUtils.upcastAndDeserializeDomainEvents(Stream<? extends DomainEventData<?>> eventEntryStream, Serializer serializer, EventUpcaster upcasterChain) Upcasts and deserializes the giveneventEntryStreamusing the givenserializerandupcasterChain. -
Uses of EventUpcaster in org.axonframework.eventsourcing.eventstore
Fields in org.axonframework.eventsourcing.eventstore declared as EventUpcasterModifier and TypeFieldDescriptionprotected EventUpcasterAbstractEventStorageEngine.Builder.upcasterChainprotected final EventUpcasterAbstractEventStorageEngine.upcasterChainMethods in org.axonframework.eventsourcing.eventstore with parameters of type EventUpcasterModifier and TypeMethodDescriptionAbstractEventStorageEngine.Builder.upcasterChain(EventUpcaster upcasterChain) Sets theEventUpcasterused to deserialize events of older revisions.BatchingEventStorageEngine.Builder.upcasterChain(EventUpcaster upcasterChain) -
Uses of EventUpcaster in org.axonframework.eventsourcing.eventstore.jdbc
Methods in org.axonframework.eventsourcing.eventstore.jdbc with parameters of type EventUpcasterModifier and TypeMethodDescriptionJdbcEventStorageEngine.Builder.upcasterChain(EventUpcaster upcasterChain) -
Uses of EventUpcaster in org.axonframework.eventsourcing.eventstore.jpa
Methods in org.axonframework.eventsourcing.eventstore.jpa with parameters of type EventUpcasterModifier and TypeMethodDescriptionJpaEventStorageEngine.Builder.upcasterChain(EventUpcaster upcasterChain) -
Uses of EventUpcaster in org.axonframework.eventsourcing.eventstore.legacyjpa
Methods in org.axonframework.eventsourcing.eventstore.legacyjpa with parameters of type EventUpcasterModifier and TypeMethodDescriptionJpaEventStorageEngine.Builder.upcasterChain(EventUpcaster upcasterChain) -
Uses of EventUpcaster in org.axonframework.serialization.upcasting.event
Classes in org.axonframework.serialization.upcasting.event that implement EventUpcasterModifier and TypeClassDescriptionclassAbstract implementation of aSingleEntryMultiUpcasterand anEventUpcasterthat eases the common process of upcasting one intermediate event representation to several other representations by applying a flat mapping function to the input stream of intermediate representations.classAbstract implementation of an eventUpcasterthat eases the common process of upcasting one intermediate event representation to another representation by applying a simple mapping function to the input stream of intermediate representations.classAbstract implementation of aSingleEntryMultiUpcasterand anEventUpcasterthat eases the common process of upcasting one intermediate event representation to several other representations by applying a flat mapping function to the input stream of intermediate representations.classASingleEventUpcasterimplementation which allows for type upcasting only.classUpcaster chain used to upcastevent representations.enumEvent upcaster that does nothing.classAbstract implementation of an eventUpcasterthat eases the common process of upcasting one intermediate event representation to another representation by applying a simple mapping function to the input stream of intermediate representations.Constructors in org.axonframework.serialization.upcasting.event with parameters of type EventUpcasterModifierConstructorDescriptionEventUpcasterChain(EventUpcaster... upcasters) Initializes an upcaster chain from one or more upcasters.Constructor parameters in org.axonframework.serialization.upcasting.event with type arguments of type EventUpcasterModifierConstructorDescriptionEventUpcasterChain(List<? extends EventUpcaster> upcasters) Initializes an upcaster chain from the given list of upcasters. -
Uses of EventUpcaster in org.axonframework.springboot.autoconfig
Method parameters in org.axonframework.springboot.autoconfig with type arguments of type EventUpcasterModifier and TypeMethodDescriptionInfraConfiguration.eventUpcastersConfigurer(List<EventUpcaster> upcasters)