ProtoFlux:UpdatesDelayWithData
More actions
Updates Delay With Data is a ProtoFlux node that will send an impulse out of Next (Continuation) after Update (int) updates after * (ASync Call) is impulsed.
On receiving an impulse, it will store Value, hold it for the requested number of Updates and start a new context impulse with DelayedValue. This allows an action to be performed at a later stage on saved value. For example, checking if a value has changed a set number of updates in the future.
Inputs
* (ASync Call)
Call to start the delay.
Updates (int)
How many updates to delay for.
Value (Generic)
The value to delay. Can be any type.
Outputs
Next (Continuation)
Fires after Updates (int) updates has passed after an impulse has been sent to * (ASync Call).
OnTriggered (ASync Call)
fires immediately after * (ASync Call) is called.
DelayedValue (Generic)
Has a value during the Next (Continuation) impulse and outputs the value that was provided to Value (Generic) when * (ASync Call) was impulsed.