OnCompletionDefinition |
OnCompletionDefinition.executorService(ExecutorService executorService) |
To use a custom Thread Pool to be used for parallel processing.
|
OnCompletionDefinition |
OnCompletionDefinition.executorServiceRef(String executorServiceRef) |
Refers to a custom Thread Pool to be used for parallel processing.
|
OnCompletionDefinition |
OnCompletionDefinition.modeAfterConsumer() |
Sets the mode to be after route is done (default due backwards compatible).
|
OnCompletionDefinition |
OnCompletionDefinition.modeBeforeConsumer() |
Sets the mode to be before consumer is done.
|
OnCompletionDefinition |
OnCompletionDefinition.onCompleteOnly() |
Will only synchronize when the Exchange completed successfully (no errors).
|
OnCompletionDefinition |
ProcessorDefinition.onCompletion() |
Adds a onCompletion Synchronization hook that invoke this route as a callback when
the Exchange has finished being processed.
|
OnCompletionDefinition |
RoutesDefinition.onCompletion() |
Adds an on completion
|
OnCompletionDefinition |
OnCompletionDefinition.onFailureOnly() |
Will only synchronize when the Exchange ended with failure (exception or FAULT message).
|
OnCompletionDefinition |
OnCompletionDefinition.onWhen(org.apache.camel.Predicate predicate) |
Sets an additional predicate that should be true before the onCompletion is triggered.
|
OnCompletionDefinition |
OnCompletionDefinition.parallelProcessing() |
If enabled then the on completion process will run asynchronously by a separate thread from a thread pool.
|
OnCompletionDefinition |
OnCompletionDefinition.parallelProcessing(boolean parallelProcessing) |
If enabled then the on completion process will run asynchronously by a separate thread from a thread pool.
|
OnCompletionDefinition |
OnCompletionDefinition.useOriginalBody() |
Will use the original input message body when an Exchange for this on completion.
|