Hyperlinkv0.9.0-beta.0

Daemon

Daemon.scheduleInMemoryconstsrc/Daemon.ts:1954

An in-memory schedule layer seeded with entries — the Layer you hand to make's scheduleLayer. Call with no argument for an empty schedule (disarmed until an entry is added via set / add / reconcile or a schedule initializer). Mutable at runtime through the schedule controls (Daemon.scheduleControls, the inline schedule verbs, or a Schedule resource).

schedulemakeSchedule
Source src/Daemon.ts:19543 lines
export const scheduleInMemory = (
  entries?: ReadonlyArray<ScheduleEntry>,
): DaemonScheduleLayerInput => DaemonSchedule.inMemory(entries);