A live query subscribes to a table and receives a notification whenever a matching record is created, updated, or deleted. Notifications arrive on the WebSocket transport out of band, and the SDK queues them as they come in.
Note
Starting a live query
live_query() subscribes to a table and returns the query id as a string. live_raw() returns the full RpcResponse if you need it.
Receiving notifications
The transport queues notifications as they arrive. Pull them out with poll_notifications(), which drains every queued notification across all live queries.
Each entry is a LiveNotificationRaw carrying the query id, the action, and the raw record bytes.
Stopping a live query
Stop a subscription with kill(), passing the query id returned by live_query().