SongGuess
    Preparing search index...

    Interface Message<Body>

    interface Message<Body = unknown> {
        attempts: number;
        body: Body;
        id: string;
        timestamp: Date;
        ack(): void;
        retry(options?: QueueRetryOptions): void;
    }

    Type Parameters

    • Body = unknown
    Index

    Properties

    Methods

    Properties

    attempts: number
    body: Body
    id: string
    timestamp: Date

    Methods

    • Returns void