public interface DynamicPipelineBuilder
Modifier and Type | Method and Description |
---|---|
DynamicPipelineBuilder |
injectAfter(List<MessageProcessor> messageProcessors)
Helper builder for injecting message processors to be executed
after the ones specified in the flow.
|
DynamicPipelineBuilder |
injectAfter(MessageProcessor... messageProcessors)
Helper builder for injecting message processors to be executed
after the ones specified in the flow.
|
DynamicPipelineBuilder |
injectBefore(List<MessageProcessor> messageProcessors)
Helper builder for injecting message processors to be executed
before the ones specified in the flow.
|
DynamicPipelineBuilder |
injectBefore(MessageProcessor... messageProcessors)
Helper builder for injecting message processors to be executed
before the ones specified in the flow.
|
String |
reset()
Removes and disposes all injected message processors.
|
String |
resetAndUpdate()
Injects the message processors added with
injectBefore(org.mule.api.processor.MessageProcessor...)
and injectAfter(org.mule.api.processor.MessageProcessor...)
If none were added the effect is the same as calling reset() |
DynamicPipelineBuilder injectBefore(MessageProcessor... messageProcessors)
resetAndUpdate()
must be called.messageProcessors
- message processors to be executed before the ones specified in the flowDynamicPipelineBuilder injectBefore(List<MessageProcessor> messageProcessors)
resetAndUpdate()
must be called.messageProcessors
- list of message processors to be executed before the ones specified in the flowDynamicPipelineBuilder injectAfter(MessageProcessor... messageProcessors)
resetAndUpdate()
must be called.messageProcessors
- message processors to be executed after the ones specified in the flowDynamicPipelineBuilder injectAfter(List<MessageProcessor> messageProcessors)
resetAndUpdate()
must be called.messageProcessors
- list of message processors to be executed after the ones specified in the flowString resetAndUpdate() throws MuleException
injectBefore(org.mule.api.processor.MessageProcessor...)
and injectAfter(org.mule.api.processor.MessageProcessor...)
If none were added the effect is the same as calling reset()
MuleException
- if the update failsString reset() throws MuleException
MuleException
- if the update failsCopyright © 2003–2016 MuleSoft, Inc.. All rights reserved.