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:

  1. break which is skip the processing remaining loops.
  2. continue which is skip only remaining steps in the current loop.
  3. go to which skip all steps from current step to destination step.

While Oracle Service Bus has two:

  1. Resume will skip current stage and continue to process next stage.
  2. Reply will skip remaining stages.