ProtoFlux:Read Cloud Variable: Difference between revisions

From Resonite Wiki
m Make category *not* a link
Fixed visual. Fixed the arrangement of the output descriptions. Moved the value description from input to output. Added a link to DataModelStore.
 
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:NodeMenu]]
{{#Invoke:ProtoFlux|GenerateUI
|Name=Read Cloud Variable
|Category=Cloud
|Inputs=
[
{"Name":"*", "Type":"AsyncCall"},
{"Name":"Path", "Type":"String"},
{"Name":"VariableOwnerId", "Type":"String"}
]
|Outputs=
[
{"Name":"OnRequest", "Type":"SyncResumption"},
{"Name":"OnDone", "Type":"Continuation"},
{"Name":"OnFail", "Type":"Continuation"},
{"Name":"Value", "Type":"Dummy"}
]
|}}


=== Reading from a variable using the "Read Cloud Variable" === <!--T:3-->
Read Cloud Variable is a node that is able to read cloud variables that are already defined. For more information on how to define the permissions/security of cloud variables, and how to create them, see [[Cloud Variables]]
{| class="wikitable"
 
|-
 
! Connector
== Inputs == <!--T:3-->
! Description
 
! Examples
=== * ([[Impulses#ASync|AsyncCall]]) ===
|-
Will read from the cloud variable upon impulse. Is restricted by cloud variable rate limits.
| Impulse (INPUT)
 
| Will read from the cloud variable upon impulse. Is restricted by cloud variable rate limits.
=== Path ([[Type:String|String]]) ===
| Async Call input.
The definition owner + "." + The variable name.
|-
<br>Examples: "G-Resonite.UserSettings.Color.Primary", "U-ProbablePrime.testing.bool"
| Path (INPUT)
 
| The definition owner + "." + The variable name.
=== VariableOwnerId ([[Type:String|String]]) ===
| "G-Resonite.UserSettings.Color.Primary", "U-ProbablePrime.testing.bool"
The id of the person you want to read the value for the variable definition specified in Path.
|-
<br>Examples: "U-Frooxius", "U-Nexulan"
| VariableOwnerID (INPUT)
 
| The id of the person you want to read the value for the variable definition specified in Path.
 
| "U-Frooxius", "U-Nexulan"
 
|-
== Outputs == <!--T:3-->
| Value (OUTPUT)
 
| The value you read for the user in VariableOwnerID in the variable definition defined in Path. This only exists during the OnDone Impulse. Write the output to a DataModelStore`1 to keep it for longer than the impulse.
=== OnRequest ([[Impulses#Async|SyncResumption]]) ===
| colorX, float3, String, DateTime.
Sent when the node has sent the request for the value to be read. This can be used to chain more asynchronous calls together to happen in parallel like more reading from other variable definitions.
|-
 
| OnDone (OUTPUT)
=== OnDone ([[Impulses|Call]]) ===
| The impulse during which Value will have the read data.
The impulse during which Value will have the read data.
| Synchronous output
 
|-
=== OnFail ([[Impulses|Call]]) ===
| OnFail (OUTPUT)
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, UserID has not made a definition for the variable definition in Path.
| 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, UserID has not made a definition for the variable definition in Path.  
 
| Synchronous output
=== Value (Pseudo-generic) ===
|-
The value you read for the user in VariableOwnerID in the variable definition defined in Path. This only exists during the OnDone Impulse. Write the output to a [[ProtoFlux:Data_Model_Store|Data Model Store]] to keep it for longer than the impulse.
| OnRequest (OUTPUT)
<br>Examples: [[Type:ColorX|ColorX]], [[Type:Float3|float3]], [[Type:String|String]], [[Type:DateTime|DateTime]].
| An async impulse sent when the node has sent the request for the value to be read. This can be used to chain more asynchronous calls together to happen in parallel like more reading from other variable definitions.
 
| ASynchronous output
[[Category:ProtoFlux:Variables:Cloud]]
|}

Latest revision as of 19:27, 19 May 2024

Read Cloud Variable
*
OnRequest
Path
OnDone
VariableOwnerId
OnFail
Value
Cloud

Read Cloud Variable is a node that is able to read cloud variables that are already defined. For more information on how to define the permissions/security of cloud variables, and how to create them, see Cloud Variables


Inputs

* (AsyncCall)

Will read from 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 you want to read the value for the variable definition specified in Path.
Examples: "U-Frooxius", "U-Nexulan"


Outputs

OnRequest (SyncResumption)

Sent when the node has sent the request for the value to be read. This can be used to chain more asynchronous calls together to happen in parallel like more reading from other variable definitions.

OnDone (Call)

The impulse during which Value will have the read data.

OnFail (Call)

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, UserID has not made a definition for the variable definition in Path.

Value (Pseudo-generic)

The value you read for the user in VariableOwnerID in the variable definition defined in Path. This only exists during the OnDone Impulse. Write the output to a Data Model Store to keep it for longer than the impulse.
Examples: ColorX, float3, String, DateTime.