@karmaniverous/jeeves-runner
    Preparing search index...

    Interface Scheduler

    Scheduler interface for managing job schedules and execution.

    interface Scheduler {
        getFailedRegistrations(): string[];
        getRunningJobs(): string[];
        reconcileNow(): void;
        start(): void;
        stop(): Promise<void>;
        triggerJob(jobId: string): Promise<ExecutionResult>;
    }
    Index

    Methods