Delay
Flow
Delay is a ProtoFlux node that allows for delaying an Async execution for the provided Duration (Sudo-Generic) before continuing.
Inputs
* (AsyncCall)
Start the delay.
Duration (Sudo-Generic)
How long to delay for in seconds.
Outputs
Next (Continuation)
Fires after Duration (Sudo-Generic) time has passed after * (AsyncCall) was called.
OnTriggered (SyncResumption)
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.