MELCloud & MELCloud Home API for Node.js - v48.2.0
    Preparing search index...

    Interface RequestRetryEvent

    Emitted each time a retry attempt is scheduled.

    interface RequestRetryEvent {
        attempt: number;
        correlationId: string;
        delayMs: number;
        error: unknown;
        method: string;
        url: string;
    }

    Hierarchy (View Summary)

    Index
    attempt: number

    1-based retry attempt number (1 = first retry, not the initial try).

    correlationId: string

    Unique request identifier (UUID v4).

    delayMs: number

    Backoff delay in milliseconds before this retry fires.

    error: unknown

    The error that triggered the retry.

    method: string

    HTTP method, uppercase.

    url: string

    Request URL (possibly relative to the client's baseURL).