Uses of Class
io.axoniq.framework.messaging.transformation.events.EventTransformation.SplitStep
Packages that use EventTransformation.SplitStep
Package
Description
Part of the Axoniq Messaging folder.
-
Uses of EventTransformation.SplitStep in io.axoniq.framework.messaging.transformation.events
Methods in io.axoniq.framework.messaging.transformation.events that return EventTransformation.SplitStepModifier and TypeMethodDescriptionEventTransformation.SplitStep.producing(MessageType producedType, BiFunction<T, @Nullable ProcessingContext, ?> outputMapper) Context-aware variant ofproducing(MessageType, Function), for outputs that also need theProcessingContext.EventTransformation.SplitStep.producing(MessageType producedType, Function<T, ?> outputMapper) Declare one event this split produces, pairing its identity with the mapper deriving its payload from the converted input payload.static <T> EventTransformation.SplitStep<T> EventTransformation.split(MessageType source, Class<T> inputType) Begin a 1:N split of events matchingsourceby exact equality.static <T> EventTransformation.SplitStep<T> EventTransformation.split(MessageType source, TypeReference<T> inputType) Generic-type overload ofEventTransformation.split(MessageType, Class).