Interface KeepJobs

KeepJobs

Specify which jobs to keep after finishing. If both age and count are specified, then the jobs kept will be the ones that satisfies both properties.

interface KeepJobs {
    age?: number;
    count?: number;
}

Properties

Properties

age?: number

Maximum age in seconds for job to be kept.

count?: number

Maximum count of jobs to be kept.

Generated using TypeDoc