Uses of Interface
org.apache.camel.builder.AdviceWithTask
-
Packages that use AdviceWithTask Package Description org.apache.camel.builder -
-
Uses of AdviceWithTask in org.apache.camel.builder
Methods in org.apache.camel.builder that return AdviceWithTask Modifier and Type Method Description static AdviceWithTask
AdviceWithTasks. afterById(RouteDefinition route, String id, ProcessorDefinition<?> after, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. afterByToString(RouteDefinition route, String toString, ProcessorDefinition<?> after, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. afterByToUri(RouteDefinition route, String toUri, ProcessorDefinition<?> after, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. afterByType(RouteDefinition route, Class<?> type, ProcessorDefinition<?> after, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. beforeById(RouteDefinition route, String id, ProcessorDefinition<?> before, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. beforeByToString(RouteDefinition route, String toString, ProcessorDefinition<?> before, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. beforeByToUri(RouteDefinition route, String toUri, ProcessorDefinition<?> before, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. beforeByType(RouteDefinition route, Class<?> type, ProcessorDefinition<?> before, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. removeById(RouteDefinition route, String id, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. removeByToString(RouteDefinition route, String toString, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. removeByToUri(RouteDefinition route, String toUri, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. removeByType(RouteDefinition route, Class<?> type, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. replaceById(RouteDefinition route, String id, ProcessorDefinition<?> replace, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. replaceByToString(RouteDefinition route, String toString, ProcessorDefinition<?> replace, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. replaceByToUri(RouteDefinition route, String toUri, ProcessorDefinition<?> replace, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. replaceByType(RouteDefinition route, Class<?> type, ProcessorDefinition<?> replace, boolean selectFirst, boolean selectLast, int selectFrom, int selectTo, int maxDeep)
static AdviceWithTask
AdviceWithTasks. replaceFrom(RouteDefinition route, org.apache.camel.Endpoint endpoint)
static AdviceWithTask
AdviceWithTasks. replaceFromWith(RouteDefinition route, String uri)
Methods in org.apache.camel.builder that return types with arguments of type AdviceWithTask Modifier and Type Method Description List<AdviceWithTask>
AdviceWithRouteBuilder. getAdviceWithTasks()
Gets a list of additional tasks to execute after theRouteBuilder.configure()
method has been executed during the advice process.
-