Hyperlinkv0.8.0-beta.28

Process

Process.scheduleInMemoryconstsrc/Process.ts:1957

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 (Process.scheduleControls, the inline schedule verbs, or a Schedule resource).

schedulemakeSchedule
Source src/Process.ts:19573 lines
export const scheduleInMemory = (
  entries?: ReadonlyArray<ScheduleEntry>,
): ProcessScheduleLayerInput => ProcessSchedule.inMemory(entries);