Source.fromSchedule(cron: string,options?: { signal?: AbortSignal; }): Source<Tick, never>
Creates a Source that yields a Tick on each cron schedule match. Supports 5-field (minute) and 6-field (second) cron expressions, day/month names (MON-FRI, JAN), and aliases (@daily, @hourly).
This is an in-process scheduler — timing is best-effort (typically within ~50ms). If a tick handler runs longer than the interval, the next tick fires after the handler completes (ticks are not queued). State is not persisted across process restarts.
optional
options: { signal?: AbortSignal; }
Source<Tick, never>