-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Is there a way to present the steps of a dialogue to retrieve an ordered list of elements from a server and has there been any conversation as to a standard way of doing that.
For instance ETC's Eos Family Consoles (https://www.etcconnect.com/Products/Consoles/Eos-Family/) implements the following methods to retrieve cue information from their consoles:
Step 1:
Client requests how many of an item there is:
/eos/get/cue/<cue list number>/count
Step 2:
Eos will return with the cue count with:
/eos/out/get/cue/<cue list number>/count = <uint32: count>
Step 3:
Client requests detailed information for each item from index 0 to count as follows:
/eos/get/cue/<cue list number>/index/<index number>
Step 4:
Eos returns the detailed information for the item requested.
/eos/out/get/cue/<cue list number>/<cue number>/<cue part number>/list/<list index>/<list count> = <uint32: list index> <string: UID> ...
In this example there are 4 different methods that should be sent in the correct order with the last two being repeated with the index increasing from 0 to count. I wonder how this could be shown in OSCQuery?