Continue
Synopsis
Continues to the next processor in the pipeline chain.
Schema
- continue:
description: <text>
if: <script>
ignore_failure: <boolean>
ignore_missing: <boolean>
on_failure: <processor[]>
on_success: <processor[]>
tag: <string>
Configuration
The following fields are used to define the processor:
Field | Required | Default | Description |
---|---|---|---|
description | N | - | Explanatory note |
if | N | - | Condition to run |
ignore_failure | N | false | Continue processing if operation fails |
ignore_missing | N | false | Skip processing if referenced field doesn't exist |
on_failure | N | - | See Handling Failures |
on_success | N | - | See Handling Success |
tag | N | - | Identifier |
Details
Explicitly continues execution to the next processor in the pipeline sequence. This processor is primarily used for flow control in conditional processing scenarios or to make pipeline logic more explicit.
The continue processor acts as a no-operation that allows pipeline execution to proceed normally. It's useful in conditional blocks where you want to explicitly indicate continuation rather than implicit flow.
The continue processor doesn't modify any data or fields. It serves purely as a control flow mechanism to make pipeline logic more readable and explicit.
This processor is most commonly used within conditional logic blocks, success/failure chains, or when you need to clearly indicate that processing should continue despite certain conditions.
While the continue processor doesn't perform any operations itself, it can still trigger success/failure chains if configured, allowing for complex flow control patterns.
Examples
Basic Continue Usage
Explicitly continuing pipeline execution... |
|
allows processing to continue: |
|
Conditional Continue
Using continue in conditional logic... |
|
continues only when condition matches: |
|
Continue with Success Chain
Triggering additional processing on continue... |
|
executes success chain: |
|
Documentation in Complex Flow
Using continue for pipeline documentation... |
|
makes pipeline flow explicit: |
|
Error Handling Flow
Using continue in error recovery... |
|
continues processing after error handling: |
|