Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
976 bytes
|
Rev | Line | |
---|
[6a3a178] | 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>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.