The world-times of every occurrence that elapsed in the half-open interval
(lastAnchor, worldTime], spaced by interval, in chronological order.
This is the catch-up set a handler resolves when world time advances (each in
sequence, since occurrences are stateful). Returns an empty array when nothing
is due, or when interval <= 0 — a guard against a non-advancing loop from
degenerate data.
Parameters
lastAnchor: number
World-time of the last applied occurrence.
worldTime: number
The new world-time being advanced to.
interval: number
Effective seconds between occurrences.
Returns number[]
Ascending world-times of the elapsed occurrences (possibly empty).
The world-times of every occurrence that elapsed in the half-open interval
(lastAnchor, worldTime], spaced byinterval, in chronological order.This is the catch-up set a handler resolves when world time advances (each in sequence, since occurrences are stateful). Returns an empty array when nothing is due, or when
interval <= 0— a guard against a non-advancing loop from degenerate data.