Framework
Version
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference

AsyncRateLimiterOptions

Interface: AsyncRateLimiterOptions

Defined in: async-rate-limiter.ts:6

Options for configuring an async rate-limited function

Properties

enabled?

ts
optional enabled: boolean;
optional enabled: boolean;

Defined in: async-rate-limiter.ts:11

Whether the rate limiter is enabled. When disabled, maybeExecute will not trigger any executions. Defaults to true.


limit

ts
limit: number;
limit: number;

Defined in: async-rate-limiter.ts:15

Maximum number of executions allowed within the time window


onError()?

ts
optional onError: (error) => void;
optional onError: (error) => void;

Defined in: async-rate-limiter.ts:27

Optional error handler for when the rate-limited function throws

Parameters

error

unknown

Returns

void


onReject()?

ts
optional onReject: (info) => void;
optional onReject: (info) => void;

Defined in: async-rate-limiter.ts:23

Optional callback function that is called when an execution is rejected due to rate limiting

Parameters

info

RateLimitRejectionInfo

Returns

void


window

ts
window: number;
window: number;

Defined in: async-rate-limiter.ts:19

Time window in milliseconds within which the limit applies

Subscribe to Bytes

Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.

Bytes

No spam. Unsubscribe at any time.