Graphorin API reference v0.7.0
Graphorin API reference / @graphorin/triggers / / CatchupPolicy
Type Alias: CatchupPolicy
ts
type CatchupPolicy = "none" | "last" | "all";Defined in: packages/triggers/src/index.ts:28
Catch-up policy applied when a trigger missed one or more fires while the scheduler was offline.
'none'- drop missed fires (default; safest for personal-assistant scenarios).'last'- fire once on resume (best for cron-style daily jobs).'all'- fire each missed run up tomaxCatchupRunswithincatchupWindowMs.