89 lines
3.4 KiB
JavaScript
89 lines
3.4 KiB
JavaScript
|
"use strict";
|
||
|
var __extends = (this && this.__extends) || (function () {
|
||
|
var extendStatics = function (d, b) {
|
||
|
extendStatics = Object.setPrototypeOf ||
|
||
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||
|
return extendStatics(d, b);
|
||
|
}
|
||
|
return function (d, b) {
|
||
|
extendStatics(d, b);
|
||
|
function __() { this.constructor = d; }
|
||
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
|
};
|
||
|
})();
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
var Subject_1 = require("../Subject");
|
||
|
var OuterSubscriber_1 = require("../OuterSubscriber");
|
||
|
var subscribeToResult_1 = require("../util/subscribeToResult");
|
||
|
function retryWhen(notifier) {
|
||
|
return function (source) { return source.lift(new RetryWhenOperator(notifier, source)); };
|
||
|
}
|
||
|
exports.retryWhen = retryWhen;
|
||
|
var RetryWhenOperator = (function () {
|
||
|
function RetryWhenOperator(notifier, source) {
|
||
|
this.notifier = notifier;
|
||
|
this.source = source;
|
||
|
}
|
||
|
RetryWhenOperator.prototype.call = function (subscriber, source) {
|
||
|
return source.subscribe(new RetryWhenSubscriber(subscriber, this.notifier, this.source));
|
||
|
};
|
||
|
return RetryWhenOperator;
|
||
|
}());
|
||
|
var RetryWhenSubscriber = (function (_super) {
|
||
|
__extends(RetryWhenSubscriber, _super);
|
||
|
function RetryWhenSubscriber(destination, notifier, source) {
|
||
|
var _this = _super.call(this, destination) || this;
|
||
|
_this.notifier = notifier;
|
||
|
_this.source = source;
|
||
|
return _this;
|
||
|
}
|
||
|
RetryWhenSubscriber.prototype.error = function (err) {
|
||
|
if (!this.isStopped) {
|
||
|
var errors = this.errors;
|
||
|
var retries = this.retries;
|
||
|
var retriesSubscription = this.retriesSubscription;
|
||
|
if (!retries) {
|
||
|
errors = new Subject_1.Subject();
|
||
|
try {
|
||
|
var notifier = this.notifier;
|
||
|
retries = notifier(errors);
|
||
|
}
|
||
|
catch (e) {
|
||
|
return _super.prototype.error.call(this, e);
|
||
|
}
|
||
|
retriesSubscription = subscribeToResult_1.subscribeToResult(this, retries);
|
||
|
}
|
||
|
else {
|
||
|
this.errors = null;
|
||
|
this.retriesSubscription = null;
|
||
|
}
|
||
|
this._unsubscribeAndRecycle();
|
||
|
this.errors = errors;
|
||
|
this.retries = retries;
|
||
|
this.retriesSubscription = retriesSubscription;
|
||
|
errors.next(err);
|
||
|
}
|
||
|
};
|
||
|
RetryWhenSubscriber.prototype._unsubscribe = function () {
|
||
|
var _a = this, errors = _a.errors, retriesSubscription = _a.retriesSubscription;
|
||
|
if (errors) {
|
||
|
errors.unsubscribe();
|
||
|
this.errors = null;
|
||
|
}
|
||
|
if (retriesSubscription) {
|
||
|
retriesSubscription.unsubscribe();
|
||
|
this.retriesSubscription = null;
|
||
|
}
|
||
|
this.retries = null;
|
||
|
};
|
||
|
RetryWhenSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {
|
||
|
var _unsubscribe = this._unsubscribe;
|
||
|
this._unsubscribe = null;
|
||
|
this._unsubscribeAndRecycle();
|
||
|
this._unsubscribe = _unsubscribe;
|
||
|
this.source.subscribe(this);
|
||
|
};
|
||
|
return RetryWhenSubscriber;
|
||
|
}(OuterSubscriber_1.OuterSubscriber));
|
||
|
//# sourceMappingURL=retryWhen.js.map
|