a zip code crypto-currency system good for red ONLY

retryWhen.js 966B

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