m 989onan moved page Write Cloud Variable`1 (ProtoFlux) to Write Cloud Variable (ProtoFlux): Get rid of `1 |
fix type links |
||
Line 21: | Line 21: | ||
Will Write the cloud variable upon impulse. Is restricted by cloud variable rate limits. | Will Write the cloud variable upon impulse. Is restricted by cloud variable rate limits. | ||
=== Path (String) === | === Path ([[Type:String|String]]) === | ||
The definition owner + "." + The variable name. | The definition owner + "." + The variable name. | ||
<br>Examples: "G-Resonite.UserSettings.Color.Primary", "U-ProbablePrime.testing.bool" | <br>Examples: "G-Resonite.UserSettings.Color.Primary", "U-ProbablePrime.testing.bool" | ||
=== VariableOwnerId (String) === | === VariableOwnerId ([[Type:String|String]]) === | ||
The id of the person writing a value to the variable specified in Path. | The id of the person writing a value to the variable specified in Path. | ||
<br>Examples: "U-Frooxius", "U-Nexulan" | <br>Examples: "U-Frooxius", "U-Nexulan" | ||
=== Value (Generic) === | === Value (Sudo-Generic) === | ||
The value you want to write to this cloud variable. | The value you want to write to this cloud variable. | ||
<br>Examples: | <br>Examples: [[Type:ColorX|ColorX]], [[Type:Float3|float3]], [[Type:String|String]], [[Type:DateTime|DateTime]]. | ||
== Outputs == <!--T:3--> | == Outputs == <!--T:3--> |
Revision as of 19:09, 15 January 2024
Inputs
* (AsyncImpulse)
Will Write the cloud variable upon impulse. Is restricted by cloud variable rate limits.
Path (String)
The definition owner + "." + The variable name.
Examples: "G-Resonite.UserSettings.Color.Primary", "U-ProbablePrime.testing.bool"
VariableOwnerId (String)
The id of the person writing a value to the variable specified in Path.
Examples: "U-Frooxius", "U-Nexulan"
Value (Sudo-Generic)
The value you want to write to this cloud variable.
Examples: ColorX, float3, String, DateTime.
Outputs
OnDone (Impulse)
The impulse during which Value will have written the data.
OnFail (Impulse)
The impulse caused if the variable hit an error. including but not limited to: Invalid Path, improper permissions for the variable definition in Path, Invalid userID.
OnRequest (AsyncImpulse)
An async impulse sent when the node has sent the request for the value to be written. This can be used to chain more asynchronous calls together to happen in parallel like more writing to other variable definitions.