Front end of the Slack clone application.

retry.d.ts 1.0KB

12345678910111213141516171819
  1. import { Observable } from '../Observable';
  2. /**
  3. * Returns an Observable that mirrors the source Observable with the exception of an `error`. If the source Observable
  4. * calls `error`, this method will resubscribe to the source Observable for a maximum of `count` resubscriptions (given
  5. * as a number parameter) rather than propagating the `error` call.
  6. *
  7. * <img src="./img/retry.png" width="100%">
  8. *
  9. * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted
  10. * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second
  11. * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications
  12. * would be: [1, 2, 1, 2, 3, 4, 5, `complete`].
  13. * @param {number} count - Number of retry attempts before failing.
  14. * @return {Observable} The source Observable modified with the retry logic.
  15. * @method retry
  16. * @owner Observable
  17. */
  18. export declare function retry<T>(this: Observable<T>, count?: number): Observable<T>;