use of org.apache.camel.impl.DefaultRouteNode in project camel by apache.
the class TraceInterceptor method traceOnException.
private void traceOnException(TracedRouteNodes traced, Exchange exchange) throws Exception {
if (traced.getLastNode() != null) {
traced.addTraced(new DefaultRouteNode(traced.getLastNode().getProcessorDefinition(), traced.getLastNode().getProcessor()));
}
traced.addTraced(new OnExceptionRouteNode());
// log and trace so we have the from -> onException event as well
logExchange(exchange);
traceExchange(exchange);
traced.addTraced(new DefaultRouteNode(node, super.getProcessor()));
}
use of org.apache.camel.impl.DefaultRouteNode in project camel by apache.
the class TraceInterceptor method traceAggregate.
private void traceAggregate(TracedRouteNodes traced, Exchange exchange) {
traced.addTraced(new AggregateRouteNode((AggregateDefinition) node.getParent()));
traced.addTraced(new DefaultRouteNode(node, super.getProcessor()));
}
Aggregations