Interface EnqueueOutcome

    Result of a single enqueue.

    interface EnqueueOutcome {
        id?: number;
        inserted: boolean;
    }
    Index

    Properties

    Properties

    id?: number

    The new job id. Null when skipped.

    inserted: boolean

    true if inserted; false if skipped due to a unique_key conflict.