Front end of the Slack clone application.

retry.js 1.2KB

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