Uses of Interface
org.apache.camel.builder.AdviceWithTask

Packages that use AdviceWithTask
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
 

Uses of AdviceWithTask in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return AdviceWithTask
static AdviceWithTask AdviceWithTasks.afterById(RouteDefinition route, String id, ProcessorDefinition after)
           
static AdviceWithTask AdviceWithTasks.afterByToString(RouteDefinition route, String toString, ProcessorDefinition after)
           
static AdviceWithTask AdviceWithTasks.beforeById(RouteDefinition route, String id, ProcessorDefinition before)
           
static AdviceWithTask AdviceWithTasks.beforeByToString(RouteDefinition route, String toString, ProcessorDefinition before)
           
static AdviceWithTask AdviceWithTasks.removeById(RouteDefinition route, String id)
           
static AdviceWithTask AdviceWithTasks.removeByToString(RouteDefinition route, String toString)
           
static AdviceWithTask AdviceWithTasks.replaceById(RouteDefinition route, String id, ProcessorDefinition replace)
           
static AdviceWithTask AdviceWithTasks.replaceByToString(RouteDefinition route, String toString, ProcessorDefinition replace)
           
 

Methods in org.apache.camel.builder that return types with arguments of type AdviceWithTask
 List<AdviceWithTask> AdviceWithRouteBuilder.getAdviceWithTasks()
          Gets a list of additional tasks to execute after the RouteBuilder.configure() method has been executed during the advice process.
 



Apache CAMEL