Uses of Class
org.apache.camel.model.OnCompletionDefinition

Packages that use OnCompletionDefinition
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.processor.interceptor Helper classes for interceptors. 
 

Uses of OnCompletionDefinition in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return OnCompletionDefinition
 OnCompletionDefinition RouteBuilder.onCompletion()
          On completion callback for doing custom routing when the Exchange is complete.
 

Uses of OnCompletionDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return OnCompletionDefinition
 OnCompletionDefinition OnCompletionDefinition.onCompleteOnly()
          Will only synchronize when the Exchange completed succesfully (no errors).
 OnCompletionDefinition RoutesDefinition.onCompletion()
          Adds an on completion
 OnCompletionDefinition ProcessorDefinition.onCompletion()
          Adds a onComplection Synchronization hook that invoke this route as a callback when the Exchange has finished being processed.
 OnCompletionDefinition OnCompletionDefinition.onFailureOnly()
          Will only synchronize when the Exchange ended with failure (exception or FAULT message).
 OnCompletionDefinition OnCompletionDefinition.onWhen(Predicate predicate)
          Sets an additional predicate that should be true before the onCompletion is triggered.
 

Methods in org.apache.camel.model that return types with arguments of type OnCompletionDefinition
 List<OnCompletionDefinition> RoutesDefinition.getOnCompletions()
           
 ExpressionClause<OnCompletionDefinition> OnCompletionDefinition.onWhen()
          Creates an expression to configure an additional predicate that should be true before the onCompletion is triggered.
 

Method parameters in org.apache.camel.model with type arguments of type OnCompletionDefinition
 void RoutesDefinition.setOnCompletions(List<OnCompletionDefinition> onCompletions)
           
 

Uses of OnCompletionDefinition in org.apache.camel.processor.interceptor
 

Methods in org.apache.camel.processor.interceptor with parameters of type OnCompletionDefinition
protected  boolean TraceInterceptor.beforeOnCompletion(OnCompletionDefinition onCompletion, TraceableUnitOfWork tuow, Exchange exchange)
           
 



Apache CAMEL