
Do is for a do-while loop, which means that first an action is executed, and then it is checked whether the conditions for the loop are still correct. If they are still correct, then the loop is repeated, otherwise the actions in the job continue to be processed. With do, the loop is always used at least once.
You are able to determine the conditions for do to trigger.

