Properties of a CronParseTask.

interface ICronParseTask {
    clock?: null | ClockType;
    clockOffset?: null | number;
    cronPattern?: null | string;
}

Implemented by

Properties

clock?: null | ClockType

Use the TaskRunner's clock or the on-chain SYSCLOCK.

clockOffset?: null | number

The timestamp offset to calculate the next run.

cronPattern?: null | string

The cron pattern to parse.