interface MeshCallCronOptions {
    delay?: string;
    id: string;
    interval: string;
    maxCycles?: number;
}

Properties

delay?: string

Time in seconds to sleep before invoking the first cycle. For example, 1 day, 1 hour. Fidelity is generally within 5 seconds. Refer to the syntax for the ms NPM package. If the interval field uses standard cron syntax, this field is ignored.

id: string

Idempotent GUID for the function

interval: string

For example, 1 day, 1 hour. Fidelity is generally within 5 seconds. Refer to the syntax for the ms NPM package. Standard cron syntax is also supported. (e.g. 0 0 * * *)

maxCycles?: number

Maximum number of cycles to run before exiting the cron.