UNPKG

backoff-rxjs

Version:

A collection of helpful RxJS operators to deal with backoff strategies (like exponential backoff)

7 lines (6 loc) 229 B
export function getDelay(backoffDelay, maxInterval) { return Math.min(backoffDelay, maxInterval); } export function exponentialBackoffDelay(iteration, initialInterval) { return Math.pow(2, iteration) * initialInterval; }