Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
3
node_modules/exponential-backoff/dist/backoff.d.ts
generated
vendored
Normal file
3
node_modules/exponential-backoff/dist/backoff.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { IBackOffOptions, BackoffOptions } from "./options";
|
||||
export { BackoffOptions, IBackOffOptions };
|
||||
export declare function backOff<T>(request: () => Promise<T>, options?: BackoffOptions): Promise<T>;
|
118
node_modules/exponential-backoff/dist/backoff.js
generated
vendored
Normal file
118
node_modules/exponential-backoff/dist/backoff.js
generated
vendored
Normal file
|
@ -0,0 +1,118 @@
|
|||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
var __generator = (this && this.__generator) || function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var options_1 = require("./options");
|
||||
var delay_factory_1 = require("./delay/delay.factory");
|
||||
function backOff(request, options) {
|
||||
if (options === void 0) { options = {}; }
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
var sanitizedOptions, backOff;
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
sanitizedOptions = options_1.getSanitizedOptions(options);
|
||||
backOff = new BackOff(request, sanitizedOptions);
|
||||
return [4 /*yield*/, backOff.execute()];
|
||||
case 1: return [2 /*return*/, _a.sent()];
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
exports.backOff = backOff;
|
||||
var BackOff = /** @class */ (function () {
|
||||
function BackOff(request, options) {
|
||||
this.request = request;
|
||||
this.options = options;
|
||||
this.attemptNumber = 0;
|
||||
}
|
||||
BackOff.prototype.execute = function () {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
var e_1, shouldRetry;
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
if (!!this.attemptLimitReached) return [3 /*break*/, 7];
|
||||
_a.label = 1;
|
||||
case 1:
|
||||
_a.trys.push([1, 4, , 6]);
|
||||
return [4 /*yield*/, this.applyDelay()];
|
||||
case 2:
|
||||
_a.sent();
|
||||
return [4 /*yield*/, this.request()];
|
||||
case 3: return [2 /*return*/, _a.sent()];
|
||||
case 4:
|
||||
e_1 = _a.sent();
|
||||
this.attemptNumber++;
|
||||
return [4 /*yield*/, this.options.retry(e_1, this.attemptNumber)];
|
||||
case 5:
|
||||
shouldRetry = _a.sent();
|
||||
if (!shouldRetry || this.attemptLimitReached) {
|
||||
throw e_1;
|
||||
}
|
||||
return [3 /*break*/, 6];
|
||||
case 6: return [3 /*break*/, 0];
|
||||
case 7: throw new Error("Something went wrong.");
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
Object.defineProperty(BackOff.prototype, "attemptLimitReached", {
|
||||
get: function () {
|
||||
return this.attemptNumber >= this.options.numOfAttempts;
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
BackOff.prototype.applyDelay = function () {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
var delay;
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
delay = delay_factory_1.DelayFactory(this.options, this.attemptNumber);
|
||||
return [4 /*yield*/, delay.apply()];
|
||||
case 1:
|
||||
_a.sent();
|
||||
return [2 /*return*/];
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
return BackOff;
|
||||
}());
|
||||
//# sourceMappingURL=backoff.js.map
|
1
node_modules/exponential-backoff/dist/backoff.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/backoff.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"backoff.js","sourceRoot":"","sources":["../src/backoff.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qCAImB;AACnB,uDAAqD;AAIrD,SAAsB,OAAO,CAC3B,OAAyB,EACzB,OAA4B;IAA5B,wBAAA,EAAA,YAA4B;;;;;;oBAEtB,gBAAgB,GAAG,6BAAmB,CAAC,OAAO,CAAC,CAAC;oBAChD,OAAO,GAAG,IAAI,OAAO,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAAC;oBAEhD,qBAAM,OAAO,CAAC,OAAO,EAAE,EAAA;wBAA9B,sBAAO,SAAuB,EAAC;;;;CAChC;AARD,0BAQC;AAED;IAGE,iBACU,OAAyB,EACzB,OAAwB;QADxB,YAAO,GAAP,OAAO,CAAkB;QACzB,YAAO,GAAP,OAAO,CAAiB;QAJ1B,kBAAa,GAAG,CAAC,CAAC;IAKvB,CAAC;IAES,yBAAO,GAApB;;;;;;6BACS,CAAC,IAAI,CAAC,mBAAmB;;;;wBAE5B,qBAAM,IAAI,CAAC,UAAU,EAAE,EAAA;;wBAAvB,SAAuB,CAAC;wBACjB,qBAAM,IAAI,CAAC,OAAO,EAAE,EAAA;4BAA3B,sBAAO,SAAoB,EAAC;;;wBAE5B,IAAI,CAAC,aAAa,EAAE,CAAC;wBACD,qBAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAC,EAAE,IAAI,CAAC,aAAa,CAAC,EAAA;;wBAA7D,WAAW,GAAG,SAA+C;wBAEnE,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,mBAAmB,EAAE;4BAC5C,MAAM,GAAC,CAAC;yBACT;;;4BAIL,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;;;;KAC1C;IAED,sBAAY,wCAAmB;aAA/B;YACE,OAAO,IAAI,CAAC,aAAa,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;QAC1D,CAAC;;;OAAA;IAEa,4BAAU,GAAxB;;;;;;wBACQ,KAAK,GAAG,4BAAY,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;wBAC7D,qBAAM,KAAK,CAAC,KAAK,EAAE,EAAA;;wBAAnB,SAAmB,CAAC;;;;;KACrB;IACH,cAAC;AAAD,CAAC,AAlCD,IAkCC"}
|
3
node_modules/exponential-backoff/dist/delay/always/always.delay.d.ts
generated
vendored
Normal file
3
node_modules/exponential-backoff/dist/delay/always/always.delay.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { Delay } from "../delay.base";
|
||||
export declare class AlwaysDelay extends Delay {
|
||||
}
|
25
node_modules/exponential-backoff/dist/delay/always/always.delay.js
generated
vendored
Normal file
25
node_modules/exponential-backoff/dist/delay/always/always.delay.js
generated
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
"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 delay_base_1 = require("../delay.base");
|
||||
var AlwaysDelay = /** @class */ (function (_super) {
|
||||
__extends(AlwaysDelay, _super);
|
||||
function AlwaysDelay() {
|
||||
return _super !== null && _super.apply(this, arguments) || this;
|
||||
}
|
||||
return AlwaysDelay;
|
||||
}(delay_base_1.Delay));
|
||||
exports.AlwaysDelay = AlwaysDelay;
|
||||
//# sourceMappingURL=always.delay.js.map
|
1
node_modules/exponential-backoff/dist/delay/always/always.delay.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/delay/always/always.delay.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"always.delay.js","sourceRoot":"","sources":["../../../src/delay/always/always.delay.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,4CAAsC;AAEtC;IAAiC,+BAAK;IAAtC;;IAAwC,CAAC;IAAD,kBAAC;AAAD,CAAC,AAAzC,CAAiC,kBAAK,GAAG;AAA5B,kCAAW"}
|
12
node_modules/exponential-backoff/dist/delay/delay.base.d.ts
generated
vendored
Normal file
12
node_modules/exponential-backoff/dist/delay/delay.base.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { IDelay } from "./delay.interface";
|
||||
import { IBackOffOptions } from "../options";
|
||||
export declare abstract class Delay implements IDelay {
|
||||
private options;
|
||||
protected attempt: number;
|
||||
constructor(options: IBackOffOptions);
|
||||
apply(): Promise<unknown>;
|
||||
setAttemptNumber(attempt: number): void;
|
||||
private readonly jitteredDelay;
|
||||
private readonly delay;
|
||||
protected readonly numOfDelayedAttempts: number;
|
||||
}
|
45
node_modules/exponential-backoff/dist/delay/delay.base.js
generated
vendored
Normal file
45
node_modules/exponential-backoff/dist/delay/delay.base.js
generated
vendored
Normal file
|
@ -0,0 +1,45 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var jitter_factory_1 = require("../jitter/jitter.factory");
|
||||
var Delay = /** @class */ (function () {
|
||||
function Delay(options) {
|
||||
this.options = options;
|
||||
this.attempt = 0;
|
||||
}
|
||||
Delay.prototype.apply = function () {
|
||||
var _this = this;
|
||||
return new Promise(function (resolve) { return setTimeout(resolve, _this.jitteredDelay); });
|
||||
};
|
||||
Delay.prototype.setAttemptNumber = function (attempt) {
|
||||
this.attempt = attempt;
|
||||
};
|
||||
Object.defineProperty(Delay.prototype, "jitteredDelay", {
|
||||
get: function () {
|
||||
var jitter = jitter_factory_1.JitterFactory(this.options);
|
||||
return jitter(this.delay);
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(Delay.prototype, "delay", {
|
||||
get: function () {
|
||||
var constant = this.options.startingDelay;
|
||||
var base = this.options.timeMultiple;
|
||||
var power = this.numOfDelayedAttempts;
|
||||
var delay = constant * Math.pow(base, power);
|
||||
return Math.min(delay, this.options.maxDelay);
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(Delay.prototype, "numOfDelayedAttempts", {
|
||||
get: function () {
|
||||
return this.attempt;
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
return Delay;
|
||||
}());
|
||||
exports.Delay = Delay;
|
||||
//# sourceMappingURL=delay.base.js.map
|
1
node_modules/exponential-backoff/dist/delay/delay.base.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/delay/delay.base.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"delay.base.js","sourceRoot":"","sources":["../../src/delay/delay.base.ts"],"names":[],"mappings":";;AAEA,2DAAyD;AAEzD;IAEE,eAAoB,OAAwB;QAAxB,YAAO,GAAP,OAAO,CAAiB;QADlC,YAAO,GAAG,CAAC,CAAC;IACyB,CAAC;IAEzC,qBAAK,GAAZ;QAAA,iBAEC;QADC,OAAO,IAAI,OAAO,CAAC,UAAA,OAAO,IAAI,OAAA,UAAU,CAAC,OAAO,EAAE,KAAI,CAAC,aAAa,CAAC,EAAvC,CAAuC,CAAC,CAAC;IACzE,CAAC;IAEM,gCAAgB,GAAvB,UAAwB,OAAe;QACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAED,sBAAY,gCAAa;aAAzB;YACE,IAAM,MAAM,GAAG,8BAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YAC3C,OAAO,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC5B,CAAC;;;OAAA;IAED,sBAAY,wBAAK;aAAjB;YACE,IAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;YAC5C,IAAM,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;YACvC,IAAM,KAAK,GAAG,IAAI,CAAC,oBAAoB,CAAC;YACxC,IAAM,KAAK,GAAG,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;YAE/C,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAChD,CAAC;;;OAAA;IAED,sBAAc,uCAAoB;aAAlC;YACE,OAAO,IAAI,CAAC,OAAO,CAAC;QACtB,CAAC;;;OAAA;IACH,YAAC;AAAD,CAAC,AA7BD,IA6BC;AA7BqB,sBAAK"}
|
3
node_modules/exponential-backoff/dist/delay/delay.factory.d.ts
generated
vendored
Normal file
3
node_modules/exponential-backoff/dist/delay/delay.factory.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { IBackOffOptions } from "../options";
|
||||
import { IDelay } from "./delay.interface";
|
||||
export declare function DelayFactory(options: IBackOffOptions, attempt: number): IDelay;
|
17
node_modules/exponential-backoff/dist/delay/delay.factory.js
generated
vendored
Normal file
17
node_modules/exponential-backoff/dist/delay/delay.factory.js
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var skip_first_delay_1 = require("./skip-first/skip-first.delay");
|
||||
var always_delay_1 = require("./always/always.delay");
|
||||
function DelayFactory(options, attempt) {
|
||||
var delay = initDelayClass(options);
|
||||
delay.setAttemptNumber(attempt);
|
||||
return delay;
|
||||
}
|
||||
exports.DelayFactory = DelayFactory;
|
||||
function initDelayClass(options) {
|
||||
if (!options.delayFirstAttempt) {
|
||||
return new skip_first_delay_1.SkipFirstDelay(options);
|
||||
}
|
||||
return new always_delay_1.AlwaysDelay(options);
|
||||
}
|
||||
//# sourceMappingURL=delay.factory.js.map
|
1
node_modules/exponential-backoff/dist/delay/delay.factory.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/delay/delay.factory.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"delay.factory.js","sourceRoot":"","sources":["../../src/delay/delay.factory.ts"],"names":[],"mappings":";;AACA,kEAA+D;AAC/D,sDAAoD;AAGpD,SAAgB,YAAY,CAAC,OAAwB,EAAE,OAAe;IAClE,IAAM,KAAK,GAAG,cAAc,CAAC,OAAO,CAAC,CAAC;IACtC,KAAK,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAChC,OAAO,KAAK,CAAC;AACjB,CAAC;AAJD,oCAIC;AAED,SAAS,cAAc,CAAC,OAAwB;IAC5C,IAAI,CAAC,OAAO,CAAC,iBAAiB,EAAE;QAC5B,OAAO,IAAI,iCAAc,CAAC,OAAO,CAAC,CAAC;KACtC;IAED,OAAO,IAAI,0BAAW,CAAC,OAAO,CAAC,CAAC;AACpC,CAAC"}
|
4
node_modules/exponential-backoff/dist/delay/delay.interface.d.ts
generated
vendored
Normal file
4
node_modules/exponential-backoff/dist/delay/delay.interface.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
export interface IDelay {
|
||||
apply: () => Promise<unknown>;
|
||||
setAttemptNumber: (attempt: number) => void;
|
||||
}
|
3
node_modules/exponential-backoff/dist/delay/delay.interface.js
generated
vendored
Normal file
3
node_modules/exponential-backoff/dist/delay/delay.interface.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=delay.interface.js.map
|
1
node_modules/exponential-backoff/dist/delay/delay.interface.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/delay/delay.interface.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"delay.interface.js","sourceRoot":"","sources":["../../src/delay/delay.interface.ts"],"names":[],"mappings":""}
|
6
node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.d.ts
generated
vendored
Normal file
6
node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { Delay } from "../delay.base";
|
||||
export declare class SkipFirstDelay extends Delay {
|
||||
apply(): Promise<unknown>;
|
||||
private readonly isFirstAttempt;
|
||||
protected readonly numOfDelayedAttempts: number;
|
||||
}
|
82
node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js
generated
vendored
Normal file
82
node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js
generated
vendored
Normal file
|
@ -0,0 +1,82 @@
|
|||
"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 __());
|
||||
};
|
||||
})();
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
var __generator = (this && this.__generator) || function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var delay_base_1 = require("../delay.base");
|
||||
var SkipFirstDelay = /** @class */ (function (_super) {
|
||||
__extends(SkipFirstDelay, _super);
|
||||
function SkipFirstDelay() {
|
||||
return _super !== null && _super.apply(this, arguments) || this;
|
||||
}
|
||||
SkipFirstDelay.prototype.apply = function () {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
return [2 /*return*/, this.isFirstAttempt ? true : _super.prototype.apply.call(this)];
|
||||
});
|
||||
});
|
||||
};
|
||||
Object.defineProperty(SkipFirstDelay.prototype, "isFirstAttempt", {
|
||||
get: function () {
|
||||
return this.attempt === 0;
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(SkipFirstDelay.prototype, "numOfDelayedAttempts", {
|
||||
get: function () {
|
||||
return this.attempt - 1;
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
return SkipFirstDelay;
|
||||
}(delay_base_1.Delay));
|
||||
exports.SkipFirstDelay = SkipFirstDelay;
|
||||
//# sourceMappingURL=skip-first.delay.js.map
|
1
node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"skip-first.delay.js","sourceRoot":"","sources":["../../../src/delay/skip-first/skip-first.delay.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,4CAAsC;AAEtC;IAAoC,kCAAK;IAAzC;;IAYA,CAAC;IAXgB,8BAAK,GAAlB;;;gBACI,sBAAO,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,iBAAM,KAAK,WAAE,EAAC;;;KACrD;IAED,sBAAY,0CAAc;aAA1B;YACI,OAAO,IAAI,CAAC,OAAO,KAAK,CAAC,CAAC;QAC9B,CAAC;;;OAAA;IAED,sBAAc,gDAAoB;aAAlC;YACI,OAAO,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;QAC5B,CAAC;;;OAAA;IACL,qBAAC;AAAD,CAAC,AAZD,CAAoC,kBAAK,GAYxC;AAZY,wCAAc"}
|
1
node_modules/exponential-backoff/dist/jitter/full/full.jitter.d.ts
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/jitter/full/full.jitter.d.ts
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
export declare function fullJitter(delay: number): number;
|
8
node_modules/exponential-backoff/dist/jitter/full/full.jitter.js
generated
vendored
Normal file
8
node_modules/exponential-backoff/dist/jitter/full/full.jitter.js
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
function fullJitter(delay) {
|
||||
var jitteredDelay = Math.random() * delay;
|
||||
return Math.round(jitteredDelay);
|
||||
}
|
||||
exports.fullJitter = fullJitter;
|
||||
//# sourceMappingURL=full.jitter.js.map
|
1
node_modules/exponential-backoff/dist/jitter/full/full.jitter.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/jitter/full/full.jitter.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"full.jitter.js","sourceRoot":"","sources":["../../../src/jitter/full/full.jitter.ts"],"names":[],"mappings":";;AAAA,SAAgB,UAAU,CAAC,KAAa;IACpC,IAAM,aAAa,GAAG,IAAI,CAAC,MAAM,EAAE,GAAG,KAAK,CAAC;IAC5C,OAAO,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;AACrC,CAAC;AAHD,gCAGC"}
|
3
node_modules/exponential-backoff/dist/jitter/jitter.factory.d.ts
generated
vendored
Normal file
3
node_modules/exponential-backoff/dist/jitter/jitter.factory.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
import { IBackOffOptions } from "../options";
|
||||
export declare type Jitter = (delay: number) => number;
|
||||
export declare function JitterFactory(options: IBackOffOptions): Jitter;
|
15
node_modules/exponential-backoff/dist/jitter/jitter.factory.js
generated
vendored
Normal file
15
node_modules/exponential-backoff/dist/jitter/jitter.factory.js
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var full_jitter_1 = require("./full/full.jitter");
|
||||
var no_jitter_1 = require("./no/no.jitter");
|
||||
function JitterFactory(options) {
|
||||
switch (options.jitter) {
|
||||
case "full":
|
||||
return full_jitter_1.fullJitter;
|
||||
case "none":
|
||||
default:
|
||||
return no_jitter_1.noJitter;
|
||||
}
|
||||
}
|
||||
exports.JitterFactory = JitterFactory;
|
||||
//# sourceMappingURL=jitter.factory.js.map
|
1
node_modules/exponential-backoff/dist/jitter/jitter.factory.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/jitter/jitter.factory.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"jitter.factory.js","sourceRoot":"","sources":["../../src/jitter/jitter.factory.ts"],"names":[],"mappings":";;AACA,kDAAgD;AAChD,4CAA0C;AAI1C,SAAgB,aAAa,CAAC,OAAwB;IACpD,QAAQ,OAAO,CAAC,MAAM,EAAE;QACtB,KAAK,MAAM;YACT,OAAO,wBAAU,CAAC;QAEpB,KAAK,MAAM,CAAC;QACZ;YACE,OAAO,oBAAQ,CAAC;KACnB;AACH,CAAC;AATD,sCASC"}
|
1
node_modules/exponential-backoff/dist/jitter/no/no.jitter.d.ts
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/jitter/no/no.jitter.d.ts
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
export declare function noJitter(delay: number): number;
|
7
node_modules/exponential-backoff/dist/jitter/no/no.jitter.js
generated
vendored
Normal file
7
node_modules/exponential-backoff/dist/jitter/no/no.jitter.js
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
function noJitter(delay) {
|
||||
return delay;
|
||||
}
|
||||
exports.noJitter = noJitter;
|
||||
//# sourceMappingURL=no.jitter.js.map
|
1
node_modules/exponential-backoff/dist/jitter/no/no.jitter.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/jitter/no/no.jitter.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"no.jitter.js","sourceRoot":"","sources":["../../../src/jitter/no/no.jitter.ts"],"names":[],"mappings":";;AAAA,SAAgB,QAAQ,CAAC,KAAa;IAClC,OAAO,KAAK,CAAC;AACjB,CAAC;AAFD,4BAEC"}
|
12
node_modules/exponential-backoff/dist/options.d.ts
generated
vendored
Normal file
12
node_modules/exponential-backoff/dist/options.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
export declare type JitterType = "none" | "full";
|
||||
export declare type BackoffOptions = Partial<IBackOffOptions>;
|
||||
export interface IBackOffOptions {
|
||||
delayFirstAttempt: boolean;
|
||||
jitter: JitterType;
|
||||
maxDelay: number;
|
||||
numOfAttempts: number;
|
||||
retry: (e: any, attemptNumber: number) => boolean | Promise<boolean>;
|
||||
startingDelay: number;
|
||||
timeMultiple: number;
|
||||
}
|
||||
export declare function getSanitizedOptions(options: BackoffOptions): IBackOffOptions;
|
31
node_modules/exponential-backoff/dist/options.js
generated
vendored
Normal file
31
node_modules/exponential-backoff/dist/options.js
generated
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
"use strict";
|
||||
var __assign = (this && this.__assign) || function () {
|
||||
__assign = Object.assign || function(t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
||||
t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
return __assign.apply(this, arguments);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var defaultOptions = {
|
||||
delayFirstAttempt: false,
|
||||
jitter: "none",
|
||||
maxDelay: Infinity,
|
||||
numOfAttempts: 10,
|
||||
retry: function () { return true; },
|
||||
startingDelay: 100,
|
||||
timeMultiple: 2
|
||||
};
|
||||
function getSanitizedOptions(options) {
|
||||
var sanitized = __assign(__assign({}, defaultOptions), options);
|
||||
if (sanitized.numOfAttempts < 1) {
|
||||
sanitized.numOfAttempts = 1;
|
||||
}
|
||||
return sanitized;
|
||||
}
|
||||
exports.getSanitizedOptions = getSanitizedOptions;
|
||||
//# sourceMappingURL=options.js.map
|
1
node_modules/exponential-backoff/dist/options.js.map
generated
vendored
Normal file
1
node_modules/exponential-backoff/dist/options.js.map
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"options.js","sourceRoot":"","sources":["../src/options.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAcA,IAAM,cAAc,GAAoB;IACtC,iBAAiB,EAAE,KAAK;IACxB,MAAM,EAAE,MAAM;IACd,QAAQ,EAAE,QAAQ;IAClB,aAAa,EAAE,EAAE;IACjB,KAAK,EAAE,cAAM,OAAA,IAAI,EAAJ,CAAI;IACjB,aAAa,EAAE,GAAG;IAClB,YAAY,EAAE,CAAC;CAChB,CAAC;AAEF,SAAgB,mBAAmB,CAAC,OAAuB;IACzD,IAAM,SAAS,yBAAyB,cAAc,GAAK,OAAO,CAAE,CAAC;IAErE,IAAI,SAAS,CAAC,aAAa,GAAG,CAAC,EAAE;QAC/B,SAAS,CAAC,aAAa,GAAG,CAAC,CAAC;KAC7B;IAED,OAAO,SAAS,CAAC;AACnB,CAAC;AARD,kDAQC"}
|
Loading…
Add table
Add a link
Reference in a new issue