m Yosh moved page ProtoFlux:ASync Sequence to ProtoFlux:Async Sequence: ASync -> Async |
no async context |
||
Line 12: | Line 12: | ||
|}} | |}} | ||
The '''Async Sequence''' performs each of the provided [[impulses]] in order, waiting for the | The '''Async Sequence''' performs each of the provided [[async impulses]] in order, waiting for the chain of each impulse to finish before executing the next one. | ||
This can be useful for organizational purposes or to avoid code duplication if something needs to be performed after a bunch of branching paths. | This can be useful for organizational purposes or to avoid code duplication if something needs to be performed after a bunch of branching paths. | ||
Line 26: | Line 26: | ||
=== Calls (List of [[Impulses#ASync|AsyncCalls]])=== | === Calls (List of [[Impulses#ASync|AsyncCalls]])=== | ||
The list of impulses to fire in order. The impulses are run in | The list of impulses to fire in order. The impulses are run in [[async flow]], and after the context of the impulse finishes, the next impulse is fired. | ||
== Examples == | == Examples == |
Latest revision as of 20:59, 29 January 2025
Async Sequence
Calls
+
-
Async
The Async Sequence performs each of the provided async impulses in order, waiting for the chain of each impulse to finish before executing the next one.
This can be useful for organizational purposes or to avoid code duplication if something needs to be performed after a bunch of branching paths.
Inputs
* (AsyncCall)
Start execution of the node.
Outputs
Calls (List of AsyncCalls)
The list of impulses to fire in order. The impulses are run in async flow, and after the context of the impulse finishes, the next impulse is fired.
Examples
See Also
- ProtoFlux:Sequence for the synchronous analogue.