websocket-ts
    Preparing search index...

    Type Alias RetryEventDetail

    Details/properties of a retry-event.

    type RetryEventDetail = {
        backoff: number;
        lastConnection: Date | undefined;
        retries: number;
    }
    Index

    Properties

    backoff: number

    Time (ms) waited since the last connection-retry.

    lastConnection: Date | undefined

    Timestamp of when the connection was lost or undefined if the connection has never been established.

    retries: number

    Number of retries that have been made since the connection was lost.