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, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.afterByToString(RouteDefinition route, String toString, ProcessorDefinition<?> after, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.afterByType(RouteDefinition route, Class<?> type, ProcessorDefinition<?> after, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.beforeById(RouteDefinition route, String id, ProcessorDefinition<?> before, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.beforeByToString(RouteDefinition route, String toString, ProcessorDefinition<?> before, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.beforeByType(RouteDefinition route, Class<?> type, ProcessorDefinition<?> before, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.removeById(RouteDefinition route, String id, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.removeByToString(RouteDefinition route, String toString, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.removeByType(RouteDefinition route, Class<?> type, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.replaceById(RouteDefinition route, String id, ProcessorDefinition<?> replace, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.replaceByToString(RouteDefinition route, String toString, ProcessorDefinition<?> replace, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.replaceByType(RouteDefinition route, Class<?> type, ProcessorDefinition<?> replace, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo)
           
static AdviceWithTask AdviceWithTasks.replaceFrom(RouteDefinition route, Endpoint endpoint)
           
static AdviceWithTask AdviceWithTasks.replaceFromWith(RouteDefinition route, String uri)
           
 

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