BreakStatement ::= | break ( LABEL_NAME | schedule ) |
Used by: |
These statements break the normal flow, usually in loops.
The break statement, with or without a label, works the same way as in Java.
The break schedule statement is used in a ScheduleStatement to stop the timer and quit the scheduled job.