redis-smq-common
Version:
Provides essential components and utilities shared across RedisSMQ packages.
11 lines • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinearBackoff = void 0;
const backoff_js_1 = require("./backoff.js");
class LinearBackoff extends backoff_js_1.Backoff {
getNextDelay(baseDelay, attempts) {
return baseDelay * attempts;
}
}
exports.LinearBackoff = LinearBackoff;
//# sourceMappingURL=linear-backoff.js.map