• Subscribes to source observable once and wraps operator with retry logic based on provided retryBackoffConfig. Calls operator function on each retry, causing it to re-subscribe to it's source, which re-emits the last emitted value (the one which caused the error).

    Type Parameters

    • In

    • Out

    Parameters

    • operator: OperatorFunction<In, Out>

      re-subscribed on retry

    • Optional retryBackoffConfig: Partial<RetryBackoffConfig>

      by default { initialInterval: 10, maxInterval: 5000, resetOnSuccess: true }

    Returns OperatorFunction<In, Out>

Generated using TypeDoc