69 lines
No EOL
2.7 KiB
JavaScript
69 lines
No EOL
2.7 KiB
JavaScript
import { operate } from '../util/lift';
|
|
import { createOperatorSubscriber } from './OperatorSubscriber';
|
|
import { identity } from '../util/identity';
|
|
import { timer } from '../observable/timer';
|
|
import { innerFrom } from '../observable/innerFrom';
|
|
export function retry(configOrCount) {
|
|
if (configOrCount === void 0) { configOrCount = Infinity; }
|
|
var config;
|
|
if (configOrCount && typeof configOrCount === 'object') {
|
|
config = configOrCount;
|
|
}
|
|
else {
|
|
config = {
|
|
count: configOrCount,
|
|
};
|
|
}
|
|
var _a = config.count, count = _a === void 0 ? Infinity : _a, delay = config.delay, _b = config.resetOnSuccess, resetOnSuccess = _b === void 0 ? false : _b;
|
|
return count <= 0
|
|
? identity
|
|
: operate(function (source, subscriber) {
|
|
var soFar = 0;
|
|
var innerSub;
|
|
var subscribeForRetry = function () {
|
|
var syncUnsub = false;
|
|
innerSub = source.subscribe(createOperatorSubscriber(subscriber, function (value) {
|
|
if (resetOnSuccess) {
|
|
soFar = 0;
|
|
}
|
|
subscriber.next(value);
|
|
}, undefined, function (err) {
|
|
if (soFar++ < count) {
|
|
var resub_1 = function () {
|
|
if (innerSub) {
|
|
innerSub.unsubscribe();
|
|
innerSub = null;
|
|
subscribeForRetry();
|
|
}
|
|
else {
|
|
syncUnsub = true;
|
|
}
|
|
};
|
|
if (delay != null) {
|
|
var notifier = typeof delay === 'number' ? timer(delay) : innerFrom(delay(err, soFar));
|
|
var notifierSubscriber_1 = createOperatorSubscriber(subscriber, function () {
|
|
notifierSubscriber_1.unsubscribe();
|
|
resub_1();
|
|
}, function () {
|
|
subscriber.complete();
|
|
});
|
|
notifier.subscribe(notifierSubscriber_1);
|
|
}
|
|
else {
|
|
resub_1();
|
|
}
|
|
}
|
|
else {
|
|
subscriber.error(err);
|
|
}
|
|
}));
|
|
if (syncUnsub) {
|
|
innerSub.unsubscribe();
|
|
innerSub = null;
|
|
subscribeForRetry();
|
|
}
|
|
};
|
|
subscribeForRetry();
|
|
});
|
|
}
|
|
//# sourceMappingURL=retry.js.map
|