Skip to content

Time Loop

Repeats the body activities until the timeout expires, with optional iteration intervals and index tracking. Returns true if the loop ended due to timeout.

Properties

NameDescriptionRequired
IntervalThe interval in seconds to wait before the next loop.
IndexThe current iteration (zero-based) that is being processed.
ResultIndicates whether the loop ended due to timeout (true) or was interrupted earlier (false).
TimeoutDefines how long the loop runs. The timeout is checked after each iteration, and ongoing iterations are not interrupted.☑️

SEE ALSO