Expand description
Wall-clock time operator factories (D52/D111/B53).
Operators stay graph-layer sugar over visible helper deps. Raw time work lives
only in crate::sources::timer; helper timer nodes are created in the owning
node’s graph arena/dispatcher through a crate-private Ctx initializer.
Functions§
- audit
- audit: value-triggered trailing throttle. The selector returns the duration notifier node.
- audit_
time - audit_time:
auditspecialized to a graph-scopedtimer(ms)duration. - buffer_
time - buffer_time: subscribe-armed interval buffer helper (D114).
- debounce
- debounce: emit the latest value after
msof quiet. - debounce_
time - debounce_time: RxJS-shaped alias of
debouncewith its own factory name. - delay
- delay: shift every DATA value by
ms, preserving every occurrence. - throttle
- throttle: leading-edge throttle. Emit immediately, then ignore source DATA for
ms. - throttle_
time - throttle_time: RxJS-shaped alias of
throttlewith its own factory name. - timeout
- timeout: subscribe-armed idle watchdog. The helper is a free node constructor, not an operator factory or graph method (D114).