Skipping is a construct that manipulates iteration (for, while, do-while).
Skipping is a construct that manipulates iteration (for, while, do-while).
For example in Java there are three skip constructs:
breakwhich is skip the processing remaining loops.continuewhich is skip only remaining steps in the current loop.go towhich skip all steps from current step to destination step.
While Oracle Service Bus has two:
Resumewill skip current stage and continue to process next stage.Replywill skip remaining stages.