mixin

RuntimeWatches

const mixin RuntimeWatches

Runtime watch subscription APIs

methods listOn

Return list of watches currently subscribed to the given id, or return empty list if the given id is not in any watches

get

Find an open watch by its identifier

isWatched

Return if given record id is under at least one watch

list

List the watches currently open for the runtime

open

Open a new watch with given display string for debugging

get abstract Watch? get(Str id, Bool checked)

Find an open watch by its identifier. If not found then throw Err or return null based on checked flag. Also see Watches.

isWatched abstract Bool isWatched(Ref id)

Return if given record id is under at least one watch

list abstract Watch[] list()

List the watches currently open for the runtime. Also see Watches.

listOn abstract Watch[] listOn(Ref id)

Return list of watches currently subscribed to the given id, or return empty list if the given id is not in any watches.

open abstract Watch open(Str dis)

Open a new watch with given display string for debugging. Also see Watches.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST