Package | Description |
---|---|
org.apache.camel.spi |
Service Provider Interfaces used by the Camel runtime which are plugin strategies.
|
Modifier and Type | Method and Description |
---|---|
List<Breakpoint> |
Debugger.getBreakpoints()
Gets a list of all the breakpoints
|
Modifier and Type | Method and Description |
---|---|
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