Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

ProtoFlux:AsyncForEach

From Resonite Wiki
Async ForEach
*
LoopStart
Collection
LoopIteration
Reverse
LoopFailed
LoopEnd
Element
Async

The Async ForEach node takes in a Collection and if the node should be done in reverse or not. When called, it will iterate through the list, providing the element of that list asyncronously.

Inputs

Calls an impulse to loop through a collection asyncronously.

Collection (IList)

The collection to loop through.

Reverse (Bool)

Makes the loop go in reverse when iterating.

Outputs

LoopStart (AsyncCall)

Fires when the loop is about to start.

LoopIteration (AsyncCall)

Fires when the loop iterating through each element of the collection list.

LoopFailed (Continuation)

Fires when the loop failed.

LoopEnd (Continuation)

Fires when the loop has ended.

Element (Generic)

The element of the collection currently being iterated through.