EasyUse/Logic/For Loopgenerated

For Loop End(forLoopEnd)

The For Loop End node marks the end of a for-loop block in the EasyUse logic workflow.

for Loop End

flow
Easy Use

Description

The For Loop End node marks the end of a for-loop block in the EasyUse logic workflow. It receives a flow control token from the corresponding For Loop Start node and terminates the loop iteration. Because it has no outputs, it is used as the final step inside a loop body rather than as a pass-through connection.

Inputs

  • flow (FLOW_CONTROL, required): The flow control signal that identifies the loop instance. Connect this input from the matching For Loop Start node to close the loop body and let the current iteration complete.

Outputs

This node has no outputs.

Usage Notes

  • Use For Loop End together with a For Loop Start node to define a loop region in your workflow.
  • Place all nodes that should run repeatedly between the For Loop Start and For Loop End nodes.
  • The loop count and step values are configured on the For Loop Start node; For Loop End only consumes the flow token and delimits the end of the loop.
  • Since the node produces no output, connect any post-loop nodes from the For Loop Start node or from other logic nodes after the loop completes.

Comments

Sign in with GitHub to join the discussion.

Loading comments…