Beignet API reference
    Preparing search index...

    Interface EnqueueTypedOutboxOptions

    Options for typed event/job enqueue helpers.

    interface EnqueueTypedOutboxOptions {
        availableAt?: Date;
        id?: string;
        maxAttempts?: number;
        trace?: TraceCarrier;
        tracing?: TracingPort;
    }
    Index
    availableAt?: Date

    Earliest time the message may be claimed.

    id?: string

    Optional caller-provided message ID.

    maxAttempts?: number

    Maximum delivery attempts before dead-lettering.

    trace?: TraceCarrier

    Explicit trace context to persist with this message.

    tracing?: TracingPort

    Tracing port used to capture the active context at enqueue time.