stop
Stop action for halting pipeline execution while preserving the current result
stop
Halts pipeline execution immediately without changing the current result. Use this action to prevent subsequent actions from running while preserving the result state from previous actions.
Example
accept;
stop;
reject;
In this example, the pipeline accepts the request and then stops. The reject action never executes, so the final result is accept.