Agenda - v6.0.0
    Preparing search index...

    Interface ScheduleOptions

    Metadata storage for job decorators Uses a WeakMap to avoid memory leaks and doesn't require reflect-metadata

    interface ScheduleOptions {
        concurrency?: number;
        lockLifetime?: number;
        lockLimit?: number;
        name?: string;
        priority?: JobPriority;
        when?: string | Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    concurrency?: number
    lockLifetime?: number
    lockLimit?: number
    name?: string
    priority?: JobPriority
    when?: string | Date