Uses of Interface
org.apache.camel.spi.Breakpoint
-
Packages that use Breakpoint Package Description org.apache.camel.spi Service Provider Interfaces used by the Camel runtime which are plugin strategies. -
-
Uses of Breakpoint in org.apache.camel.spi
Methods in org.apache.camel.spi that return types with arguments of type Breakpoint Modifier and Type Method Description List<Breakpoint>
Debugger. getBreakpoints()
Gets a list of all the breakpointsMethods in org.apache.camel.spi with parameters of type Breakpoint Modifier and Type Method Description void
Debugger. addBreakpoint(Breakpoint breakpoint)
Add the given breakpointvoid
Debugger. addBreakpoint(Breakpoint breakpoint, Condition... conditions)
Add the given breakpointvoid
Debugger. addSingleStepBreakpoint(Breakpoint breakpoint)
Add the given breakpoint which will be used in single step modevoid
Debugger. addSingleStepBreakpoint(Breakpoint breakpoint, Condition... conditions)
Add the given breakpoint which will be used in single step modevoid
Debugger. removeBreakpoint(Breakpoint breakpoint)
Removes the given breakpointboolean
Debugger. startSingleStepExchange(String exchangeId, Breakpoint breakpoint)
Starts the single step debug mode for the given exchange
-