Beignet API reference
    Preparing search index...

    Interface OutboxMarkFailedInput

    Input for marking a claimed message failed.

    interface OutboxMarkFailedInput {
        claimToken: string;
        deadLetter?: boolean;
        error?: unknown;
        id: string;
        now?: Date;
        retryAt?: Date;
    }
    Index

    Properties

    claimToken: string

    Claim token returned by claimBatch(...).

    deadLetter?: boolean

    Whether this failure should dead-letter the message.

    error?: unknown

    Delivery error.

    id: string

    Claimed message ID.

    now?: Date

    Failure timestamp.

    retryAt?: Date

    Next time the message may be claimed.