org.apache.camel.processor
Class CamelInternalProcessor.BacklogDebuggerAdvice
java.lang.Object
org.apache.camel.processor.CamelInternalProcessor.BacklogDebuggerAdvice
- All Implemented Interfaces:
- CamelInternalProcessorAdvice<StopWatch>
- Enclosing class:
- CamelInternalProcessor
public static final class CamelInternalProcessor.BacklogDebuggerAdvice
- extends Object
- implements CamelInternalProcessorAdvice<StopWatch>
Advice to execute the BacklogDebugger if enabled.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CamelInternalProcessor.BacklogDebuggerAdvice
public CamelInternalProcessor.BacklogDebuggerAdvice(BacklogDebugger backlogDebugger,
Processor target,
ProcessorDefinition<?> definition)
before
public StopWatch before(Exchange exchange)
throws Exception
- Description copied from interface:
CamelInternalProcessorAdvice
- Callback executed before processing a step in the route.
- Specified by:
before in interface CamelInternalProcessorAdvice<StopWatch>
- Parameters:
exchange - the current exchange
- Returns:
- any state to keep and provide as data to the
CamelInternalProcessorAdvice.after(org.apache.camel.Exchange, Object) method, or use null for no state.
- Throws:
Exception - is thrown if error during the call.
after
public void after(Exchange exchange,
StopWatch stopWatch)
throws Exception
- Description copied from interface:
CamelInternalProcessorAdvice
- Callback executed after processing a step in the route.
- Specified by:
after in interface CamelInternalProcessorAdvice<StopWatch>
- Parameters:
exchange - the current exchangestopWatch - the state, if any, returned in the CamelInternalProcessorAdvice.before(org.apache.camel.Exchange) method.
- Throws:
Exception - is thrown if error during the call.
Apache Camel