Uses of Interface
org.apache.camel.spi.Breakpoint

Packages that use Breakpoint
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of Breakpoint in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement Breakpoint
 class BreakpointSupport
          A support class for Breakpoint implementations to use as base class.
 

Methods in org.apache.camel.impl that return types with arguments of type Breakpoint
 List<Breakpoint> DefaultDebugger.getBreakpoints()
           
 

Methods in org.apache.camel.impl with parameters of type Breakpoint
 void DefaultDebugger.addBreakpoint(Breakpoint breakpoint)
           
 void DefaultDebugger.addBreakpoint(Breakpoint breakpoint, Condition... conditions)
           
 void DefaultDebugger.addSingleStepBreakpoint(Breakpoint breakpoint)
           
 void DefaultDebugger.addSingleStepBreakpoint(Breakpoint breakpoint, Condition... conditions)
           
protected  void DefaultDebugger.onAfterProcess(Exchange exchange, Processor processor, ProcessorDefinition<?> definition, long timeTaken, Breakpoint breakpoint)
           
protected  void DefaultDebugger.onBeforeProcess(Exchange exchange, Processor processor, ProcessorDefinition<?> definition, Breakpoint breakpoint)
           
protected  void DefaultDebugger.onEvent(Exchange exchange, EventObject event, Breakpoint breakpoint)
           
 void DefaultDebugger.removeBreakpoint(Breakpoint breakpoint)
           
 boolean DefaultDebugger.startSingleStepExchange(String exchangeId, Breakpoint breakpoint)
           
 

Uses of Breakpoint in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return types with arguments of type Breakpoint
 List<Breakpoint> Debugger.getBreakpoints()
          Gets a list of all the breakpoints
 

Methods in org.apache.camel.spi with parameters of type Breakpoint
 void Debugger.addBreakpoint(Breakpoint breakpoint)
          Add the given breakpoint
 void Debugger.addBreakpoint(Breakpoint breakpoint, Condition... conditions)
          Add the given breakpoint
 void Debugger.addSingleStepBreakpoint(Breakpoint breakpoint)
          Add the given breakpoint which will be used in single step mode

The debugger will single step the first message arriving.

 void Debugger.addSingleStepBreakpoint(Breakpoint breakpoint, Condition... conditions)
          Add the given breakpoint which will be used in single step mode

The debugger will single step the first message arriving.

 void Debugger.removeBreakpoint(Breakpoint breakpoint)
          Removes the given breakpoint
 boolean Debugger.startSingleStepExchange(String exchangeId, Breakpoint breakpoint)
          Starts the single step debug mode for the given exchange
 



Apache CAMEL