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

AsyncThrottler

Class: AsyncThrottler<TFn, TArgs>

Defined in: async-throttler.ts:49

A class that creates an async throttled function.

Throttling limits how often a function can be executed, allowing only one execution within a specified time window. Unlike debouncing which resets the delay timer on each call, throttling ensures the function executes at a regular interval regardless of how often it's called.

This is useful for rate-limiting API calls, handling scroll/resize events, or any scenario where you want to ensure a maximum execution frequency.

Example

ts
const throttler = new AsyncThrottler(async (value: string) => {
  await saveToAPI(value);
}, { wait: 1000 });

// Will only execute once per second no matter how often called
inputElement.addEventListener('input', () => {
  throttler.maybeExecute(inputElement.value);
});
const throttler = new AsyncThrottler(async (value: string) => {
  await saveToAPI(value);
}, { wait: 1000 });

// Will only execute once per second no matter how often called
inputElement.addEventListener('input', () => {
  throttler.maybeExecute(inputElement.value);
});

Type Parameters

TFn extends (...args) => Promise<any>

TArgs extends Parameters<TFn>

Constructors

new AsyncThrottler()

ts
new AsyncThrottler<TFn, TArgs>(fn, initialOptions): AsyncThrottler<TFn, TArgs>
new AsyncThrottler<TFn, TArgs>(fn, initialOptions): AsyncThrottler<TFn, TArgs>

Defined in: async-throttler.ts:61

Parameters

fn

TFn

initialOptions

AsyncThrottlerOptions

Returns

AsyncThrottler<TFn, TArgs>

Methods

cancel()

ts
cancel(): void
cancel(): void

Defined in: async-throttler.ts:102

Cancels any pending execution

Returns

void


getExecutionCount()

ts
getExecutionCount(): number
getExecutionCount(): number

Defined in: async-throttler.ts:88

Returns the number of times the function has been executed

Returns

number


getNextExecutionTime()

ts
getNextExecutionTime(): number
getNextExecutionTime(): number

Defined in: async-throttler.ts:95

Returns the next execution time

Returns

number


maybeExecute()

ts
maybeExecute(...args): Promise<void>
maybeExecute(...args): Promise<void>

Defined in: async-throttler.ts:115

Attempts to execute the throttled function If a call is already in progress, it may be blocked or queued depending on the wait option

Parameters

args

...TArgs

Returns

Promise<void>


setOptions()

ts
setOptions(newOptions): Required<AsyncThrottlerOptions>
setOptions(newOptions): Required<AsyncThrottlerOptions>

Defined in: async-throttler.ts:75

Updates the throttler options Returns the new options state

Parameters

newOptions

Partial<AsyncThrottlerOptions>

Returns

Required<AsyncThrottlerOptions>

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.