a zip code crypto-currency system good for red ONLY

retryWhen.js 1.0KB

123456789101112131415161718192021
  1. /** PURE_IMPORTS_START .._operators_retryWhen PURE_IMPORTS_END */
  2. import { retryWhen as higherOrder } from '../operators/retryWhen';
  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 emit the Throwable that caused the error to the Observable returned from `notifier`.
  6. * If that Observable calls `complete` or `error` then this method will call `complete` or `error` on the child
  7. * subscription. Otherwise this method will resubscribe to the source Observable.
  8. *
  9. * <img src="./img/retryWhen.png" width="100%">
  10. *
  11. * @param {function(errors: Observable): Observable} notifier - Receives an Observable of notifications with which a
  12. * user can `complete` or `error`, aborting the retry.
  13. * @return {Observable} The source Observable modified with retry logic.
  14. * @method retryWhen
  15. * @owner Observable
  16. */
  17. export function retryWhen(notifier) {
  18. return higherOrder(notifier)(this);
  19. }
  20. //# sourceMappingURL=retryWhen.js.map