Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

retryWhen.d.ts 976B

1234567891011121314151617
  1. import { Observable } from '../Observable';
  2. import { MonoTypeOperatorFunction } from '../types';
  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. * ![](retryWhen.png)
  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 declare function retryWhen<T>(notifier: (errors: Observable<any>) => Observable<any>): MonoTypeOperatorFunction<T>;