Описание тега skip
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:
break
which is skip the processing remaining loops.continue
which is skip only remaining steps in the current loop.go to
which skip all steps from current step to destination step.
While Oracle Service Bus has two:
Resume
will skip current stage and continue to process next stage.Reply
will skip remaining stages.