@runloop/remote-agents-sdk
    Preparing search index...

    Interface ResubscribeRetryInfo

    interface ResubscribeRetryInfo {
        consecutiveFailures: number;
        delayMs: number;
        error: unknown;
    }
    Index

    Properties

    consecutiveFailures: number

    Consecutive failed attempts, including this one (resets after success).

    delayMs: number

    Backoff delay before the next attempt, in milliseconds.

    error: unknown

    The error that ended the attempt, or undefined on a clean stream end.