W3Booster SDK 2.0.0
    Preparing search index...

    Interface ConnectionRetrySnapshot

    interface ConnectionRetrySnapshot {
        attempt: number;
        lastError: unknown;
        maxAttempts: number | null;
        nextDelay: number | null;
    }
    Index
    attempt: number

    The retry attempt that is waiting or currently in progress. The first connection attempt is 1.

    lastError: unknown

    The transient failure that caused this retry.

    maxAttempts: number | null

    Configured total attempt limit, or null for an unlimited policy.

    nextDelay: number | null

    Milliseconds before this attempt starts, or null while the attempt is in progress.