a zip code crypto-currency system good for red ONLY

retryWhen.d.ts 956B

1234567891011121314151617
  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 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 declare function retryWhen<T>(this: Observable<T>, notifier: (errors: Observable<any>) => Observable<any>): Observable<T>;