Interface OutboundChannelModelBuilder.OutboundEventProcessingPipelineBuilder
- Enclosing interface:
- OutboundChannelModelBuilder
public static interface OutboundChannelModelBuilder.OutboundEventProcessingPipelineBuilder
Builder for the 'event processing' pipeline which gets invoked before sending out the event.
-
Method Summary
Modifier and TypeMethodDescriptiondelegateExpressionSerializer
(String delegateExpression) Uses a delegate expression to serialize the event.eventProcessingPipeline
(String delegateExpression) Uses a delegate expression to determine the customOutboundEventProcessingPipeline
instance.Serializes the event to JSON.Serializes the event to XML.
-
Method Details
-
jsonSerializer
OutboundChannelModelBuilder jsonSerializer()Serializes the event to JSON. -
xmlSerializer
OutboundChannelModelBuilder xmlSerializer()Serializes the event to XML. -
delegateExpressionSerializer
Uses a delegate expression to serialize the event. The expression should resolve to an instance ofOutboundEventSerializer
. -
eventProcessingPipeline
Uses a delegate expression to determine the customOutboundEventProcessingPipeline
instance.
-