AsyncCall not resumption sorry |
Sudo-Generic -> Pseudo-generic |
||
Line 14: | Line 14: | ||
|}} | |}} | ||
Delay is a ProtoFlux node that allows for delaying an [[Impulses#Async|Async]] execution for the provided Duration ( | Delay is a ProtoFlux node that allows for delaying an [[Impulses#Async|Async]] execution for the provided Duration (Pseudo-generic) before continuing. | ||
== Inputs == | == Inputs == | ||
Line 22: | Line 22: | ||
Start the delay. | Start the delay. | ||
=== Duration ( | === Duration (Pseudo-generic) === | ||
How long to delay for in seconds or timespan. | How long to delay for in seconds or timespan. | ||
Line 32: | Line 32: | ||
=== Next ([[Impulses|Continuation]]) === | === Next ([[Impulses|Continuation]]) === | ||
Fires after Duration ( | Fires after Duration (Pseudo-generic) time has passed after * ([[Impulses#Async|AsyncCall]]) was called. | ||
=== OnTriggered ([[Impulses#Async|AsyncCall]]) === | === OnTriggered ([[Impulses#Async|AsyncCall]]) === |
Revision as of 18:43, 6 June 2024
Delay
Flow
Delay is a ProtoFlux node that allows for delaying an Async execution for the provided Duration (Pseudo-generic) before continuing.
Inputs
* (AsyncCall)
Start the delay.
Duration (Pseudo-generic)
How long to delay for in seconds or timespan.
Outputs
Next (Continuation)
Fires after Duration (Pseudo-generic) time has passed after * (AsyncCall) was called.
OnTriggered (AsyncCall)
Fires instantly after * (AsyncCall) is called.
Examples
-
Delay being used as a way to cause something to happen a bit after someone presses a button.