UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

7 lines 237 B
import { Backoff } from './backoff.js'; export class LogarithmicBackoff extends Backoff { getNextDelay(baseDelay, attempts) { return baseDelay * Math.log2(attempts + 2); } } //# sourceMappingURL=logarithmic-backoff.js.map