list
Read all players.
Arguments for this operation
{ operation: "list" }Example
gatos.schedule_control({"operation":"list"})tool Scheduling
Inspect and control schedule and camera players.
| Field | Type | Requirement | Description |
|---|---|---|---|
operation | string | Required | list, get, pause, resume, scrub, rate, loop, stop, remove, or clear. |
id | string | null | Optional · null | Player id; omitted for list and normally clear. |
value | number | Optional · 0 | Pause flag, position ms, playback rate, or loop flag as appropriate. |
token | string | null | Optional · null | Fallback id token for control actions. |
Choose an operation below. Its required payload and a complete call stay together—there is no second table to cross-reference.
listRead all players.
{ operation: "list" }gatos.schedule_control({"operation":"list"})getRead one player.
{ operation: "get", id }gatos.schedule_control({"operation":"get","id":"launch-seq"})pause / resumeCanonical action: schedule.pause
Set paused state; resume maps to pause value 0 automatically.
{ operation, id, value?: 0 | 1 }gatos.schedule_control({"operation":"pause","id":"launch-seq","value":1})scrubCanonical action: schedule.scrub
Seek without firing skipped entries.
{ operation: "scrub", id, value: position_ms }gatos.schedule_control({"operation":"scrub","id":"launch-seq","value":3500})rateCanonical action: schedule.rate
Set playback rate; 0 is a legal frozen state.
{ operation: "rate", id, value: number // 0..100 }gatos.schedule_control({"operation":"rate","id":"launch-seq","value":0.5})loopCanonical action: schedule.*
Enable or disable looping.
{ operation: "loop", id, value: 0 | 1 }gatos.schedule_control({"operation":"loop","id":"launch-seq","value":1})stop | removeCanonical action: schedule.*
Stop execution while keeping the player, or remove it from the registry.
{ operation, id }gatos.schedule_control({"operation":"stop","id":"launch-seq"})clearCanonical action: schedule.clear
Remove every live and committed-but-not-activated player.
{ operation: "clear" }gatos.schedule_control({"operation":"clear"})gatos.schedule_control({"operation":"scrub","id":"launch-seq","value":3500})Player state for reads or command outcome for controls.