Break actions - Titousensei/sisyphus GitHub Wiki
Currently, Sisyphus does not support grouping and nesting of actions. Instead, there is the BreakAfter action, which stops the chain of actions for this rows and continue to the next row. (Similar to "continue" in a loop).
- new BreakAfter(Action): execute one last action, then break
- BreakAfter.NO_OP: just break, no last action. (constant provided for convenience.)
- new BreakAfter("label"): same as NO_OP, but prints an internal counter with the label in the log
- new BreakAfter(Action, "label"): same as above.