Hyperlinkv0.8.0-beta.28

Process

Process.processScheduleEntryconstsrc/Process.ts:1515
Schema.Struct<{
  readonly id: Schema.optionalKey<Schema.String>
  readonly startAt: Schema.DateTimeUtc
  readonly stopAt: Schema.optionalKey<Schema.DateTimeUtc>
}>

One scheduled run window on the wire — the wire form of the engine's ProcessScheduleEntry. The engine models id / stopAt as Option and the times as Date; the toolkit standard is DateTime.Utc and optionalKey, so the runtime maps between them. startAt is when the run instance triggers; stopAt (absent = open-ended) is when it stops.

scheduleProcessScheduleEntry
Source src/Process.ts:15155 lines
export const processScheduleEntry = Schema.Struct({
  id: Schema.optionalKey(Schema.String),
  startAt: Schema.DateTimeUtc,
  stopAt: Schema.optionalKey(Schema.DateTimeUtc),
});
Referenced by 2 symbols