Defined in: rate-limiter.ts:26
Options for configuring a rate-limited function
optional enabled: boolean;
optional enabled: boolean;
Defined in: rate-limiter.ts:31
Whether the rate limiter is enabled. When disabled, maybeExecute will not trigger any executions. Defaults to true.
limit: number;
limit: number;
Defined in: rate-limiter.ts:35
Maximum number of executions allowed within the time window
optional onReject: (info) => void;
optional onReject: (info) => void;
Defined in: rate-limiter.ts:43
Optional callback function that is called when an execution is rejected due to rate limiting
void
window: number;
window: number;
Defined in: rate-limiter.ts:39
Time window in milliseconds within which the limit applies
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.