Interface DebuggerCallback
-
public interface DebuggerCallbackDebuggerCallbackis an interface to implement in case a test wishes to be called immediately before and after invoking a processor by enabling and configuring automatically the debug mode. Only an outer class can implement this interface, implementing this interface from a@Nestedtest class has no effect.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebugAfter(org.apache.camel.Exchange exchange, org.apache.camel.Processor processor, org.apache.camel.model.ProcessorDefinition<?> definition, String id, String label, long timeTaken)Single step debugs and Camel invokes this method after processing the given processorvoiddebugBefore(org.apache.camel.Exchange exchange, org.apache.camel.Processor processor, org.apache.camel.model.ProcessorDefinition<?> definition, String id, String label)Single step debugs and Camel invokes this method before entering the given processor
-