ProtoFlux:ASync For

From Resonite Wiki
Async For
*
LoopStart
Count
LoopIteration
Reverse
LoopEnd
Iteration
Async

ASync For is a protoflux node that will do a bunch of async tasks in order in an Async context, waiting for each task to be done before moving to the next one. This is useful if you want to do a bunch of GET String requests but you need to wait for the previous one to be done before doing the next, for a specified number of times. This does not behave the same as using a Start ASync Task on every For loop iteration or even before the For loop using a Start ASync Task.

Inputs

* (IAsyncOperation)

Start the execution of this node.

Count (int)

How many times to execute LoopIteration (AsyncCall)

Reverse (bool)

Whether to start at Count (int) and go backwards.

Outputs

LoopStart (AsyncCall)

Fires after * (IAsyncOperation) is called and before any iterations or checks have been done.

LoopIteration (AsyncCall)

Fires while the loop is running and after the previous LoopIteration (AsyncCall) or LoopStart (AsyncCall) has finished.

LoopEnd (Continuation)

Fires once the loop has finished all LoopIteration (AsyncCall) in order.

Iteration (int)

The current iteration of the loop.

Examples