2021-06-09 22:28:54 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-06-23 14:47:42 +00:00
|
|
|
const SECOND = 1000;
|
|
|
|
|
|
|
|
export const FIBONACCI_TIMEOUTS: ReadonlyArray<number> = [
|
|
|
|
1 * SECOND,
|
|
|
|
2 * SECOND,
|
|
|
|
3 * SECOND,
|
|
|
|
5 * SECOND,
|
|
|
|
8 * SECOND,
|
|
|
|
13 * SECOND,
|
|
|
|
21 * SECOND,
|
|
|
|
34 * SECOND,
|
|
|
|
55 * SECOND,
|
|
|
|
];
|
|
|
|
|
2021-06-09 22:28:54 +00:00
|
|
|
export class BackOff {
|
|
|
|
private count = 0;
|
|
|
|
|
|
|
|
constructor(private readonly timeouts: ReadonlyArray<number>) {}
|
|
|
|
|
|
|
|
public get(): number {
|
|
|
|
return this.timeouts[this.count];
|
|
|
|
}
|
|
|
|
|
|
|
|
public getAndIncrement(): number {
|
|
|
|
const result = this.get();
|
|
|
|
if (!this.isFull()) {
|
|
|
|
this.count += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
public reset(): void {
|
|
|
|
this.count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public isFull(): boolean {
|
|
|
|
return this.count === this.timeouts.length - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public getIndex(): number {
|
|
|
|
return this.count;
|
|
|
|
}
|
|
|
|
}
|