ProtoFlux:Delay: Difference between revisions

From Resonite Wiki
Finish Delay ProtoFlux Node Page
add clarification
Line 24: Line 24:
=== Duration (Sudo-Generic) ===  
=== Duration (Sudo-Generic) ===  


How long to delay for in seconds.
How long to delay for in seconds or timespan.


Examples: [[Type:Double | Double]], [[Type:Float | Float]], [[Type:Int | Int]] and [[Type:TimeSpan | TimeSpan]].
Examples: [[Type:Double | Double]], [[Type:Float | Float]], [[Type:Int | Int]] and [[Type:TimeSpan | TimeSpan]].

Revision as of 17:50, 16 February 2024

Delay
*
Next
Duration
OnTriggered
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 or timespan.

Examples: Double, Float, Int and TimeSpan.

Outputs

Next (Continuation)

Fires after Duration (Sudo-Generic) time has passed after * (AsyncCall) was called.

OnTriggered (SyncResumption)

Fires instantly after * (AsyncCall) is called.

Examples