Sha256: a37e516e673193809a18674d44901a0abbab55376fa004dd74d7752a2df4a8a5

Contents?: true

Size: 1.93 KB

Versions: 49

Compression:

Stored size: 1.93 KB

Contents

import { Subscriber } from '../Subscriber';
/**
 * Returns an Observable that mirrors the source Observable with the exception of an `error`. If the source Observable
 * calls `error`, this method will resubscribe to the source Observable for a maximum of `count` resubscriptions (given
 * as a number parameter) rather than propagating the `error` call.
 *
 * <img src="./img/retry.png" width="100%">
 *
 * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted
 * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second
 * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications
 * would be: [1, 2, 1, 2, 3, 4, 5, `complete`].
 * @param {number} count - Number of retry attempts before failing.
 * @return {Observable} The source Observable modified with the retry logic.
 * @method retry
 * @owner Observable
 */
export function retry(count = -1) {
    return (source) => source.lift(new RetryOperator(count, source));
}
class RetryOperator {
    constructor(count, source) {
        this.count = count;
        this.source = source;
    }
    call(subscriber, source) {
        return source.subscribe(new RetrySubscriber(subscriber, this.count, this.source));
    }
}
/**
 * We need this JSDoc comment for affecting ESDoc.
 * @ignore
 * @extends {Ignored}
 */
class RetrySubscriber extends Subscriber {
    constructor(destination, count, source) {
        super(destination);
        this.count = count;
        this.source = source;
    }
    error(err) {
        if (!this.isStopped) {
            const { source, count } = this;
            if (count === 0) {
                return super.error(err);
            }
            else if (count > -1) {
                this.count = count - 1;
            }
            source.subscribe(this._unsubscribeAndRecycle());
        }
    }
}
//# sourceMappingURL=retry.js.map

Version data entries

49 entries across 49 versions & 4 rubygems

Version Path
ilog-0.4.1 node_modules/rxjs/_esm2015/operators/retry.js
ilog-0.4.0 node_modules/rxjs/_esm2015/operators/retry.js
ilog-0.3.3 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-18.0.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.21.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.20.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.19.1 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.19.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.18.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.17.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.16.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.15.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.14.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.13.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.12.2 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.12.1 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.12.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.11.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.10.0 node_modules/rxjs/_esm2015/operators/retry.js
govuk_publishing_components-17.9.0 node_modules/rxjs/_esm2015/operators/retry.js