adams.flow.control.Breakpoint
Allows to pause the execution of the flow when this actor is reached and the condition evaluates to 'true'.
Flow input/output:
- input: adams.flow.core.Unknown
- output: adams.flow.core.Unknown
The logging level for outputting errors and debugging output.
command-line | -logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> |
default | WARNING |
min-user-mode | Expert |
The name of the actor.
command-line | -name <java.lang.String> |
default | Breakpoint |
The annotations to attach to this actor.
command-line | -annotation <adams.core.base.BaseAnnotation> |
default |
|
If set to true, transformation is skipped and the input token is just forwarded as it is.
command-line | -skip <boolean> |
default | false |
If set to true, the flow execution at this level gets stopped in case this actor encounters an error; the error gets propagated; useful for critical actors.
command-line | -stop-flow-on-error <boolean> |
default | false |
min-user-mode | Expert |
If enabled, then no errors are output in the console; Note: the enclosing actor handler must have this enabled as well.
command-line | -silent <boolean> |
default | false |
min-user-mode | Expert |
The scopeRestriction to use for suspending the flow execution.
command-line | -scope-restriction <adams.flow.execution.debug.AbstractScopeRestriction> |
default | adams.flow.execution.debug.NoScopeRestriction |
If set to true, the breakpoint gets evaluated at pre-input (of token) time; token available.
command-line | -on-pre-input <boolean> |
default | false |
If set to true, the breakpoint gets evaluated at post-input (of token) time.
command-line | -on-post-input <boolean> |
default | false |
If set to true, the breakpoint gets evaluated at pre-execute time.
command-line | -on-pre-execute <boolean> |
default | true |
If set to true, the breakpoint gets evaluated at post-execute time.
command-line | -on-post-execute <boolean> |
default | false |
If set to true, the breakpoint gets evaluated at pre-output (of token) time; token available.
command-line | -on-pre-output <boolean> |
default | false |
If set to true, the breakpoint gets evaluated at post-output (of token) time.
command-line | -on-post-output <boolean> |
default | false |
The condition to evaluate; if the condition evaluates to 'true', the execution of the flow is paused.
command-line | -condition <adams.flow.condition.bool.BooleanCondition> |
default | adams.flow.condition.bool.Expression |
The expression to display initially in the watch dialog; the type of the watch needs to be specified as well.
command-line | -watch <adams.core.base.BaseString> [-watch ...] |
default |
|
The types of the watch expressions; determines how the expressions get evaluated and displayed.
command-line | -watch-type <VARIABLE|STRING|BOOLEAN_EXPRESSION|MATH_EXPRESSION|STRING_EXPRESSION> [-watch-type ...] |
default |
|
The views to display automatically when the breakpoint is reached.
command-line | -view <SOURCE|EXPRESSIONS|VARIABLES|STORAGE|INSPECT_TOKEN|BREAKPOINTS> [-view ...] |
default |
|