Type alias RetryEventDetail

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

Details/properties of a retry-event.

Type declaration

  • Readonly backoff: number

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

  • Readonly lastConnection: Date | undefined

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

  • Readonly retries: number

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

Generated using TypeDoc