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

Packages that use TryDefinition
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of TryDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return TryDefinition
 TryDefinition TryDefinition.doCatch(Class... exceptionType)
          Handles the given exception(s)
 TryDefinition TryDefinition.doFinally()
          The finally block for a given handle
 TryDefinition ProcessorDefinition.doTry()
          Creates a try/catch block
 TryDefinition TryDefinition.handled(boolean handled)
          Sets whether the exchange should be marked as handled or not.
 TryDefinition TryDefinition.handled(Expression handled)
          Sets whether the exchange should be marked as handled or not.
 TryDefinition TryDefinition.handled(Predicate handled)
          Sets whether the exchange should be marked as handled or not.
 TryDefinition TryDefinition.onWhen(Predicate predicate)
          Sets an additional predicate that should be true before the onCatch is triggered.
 

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



Apache CAMEL