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

AsyncDebouncer

Class: AsyncDebouncer<TFn, TArgs>

Defined in: async-debouncer.ts:49

A class that creates an async debounced function.

Debouncing ensures that a function is only executed after a specified delay has passed since its last invocation. Each new invocation resets the delay timer. This is useful for handling frequent events like window resizing or input changes where you only want to execute the handler after the events have stopped occurring.

Unlike throttling which allows execution at regular intervals, debouncing prevents any execution until the function stops being called for the specified delay period.

Example

ts
const debouncer = new AsyncDebouncer(async (value: string) => {
  await searchAPI(value);
}, { wait: 500 });

// Called on each keystroke but only executes after 500ms of no typing
inputElement.addEventListener('input', () => {
  debouncer.maybeExecute(inputElement.value);
});
const debouncer = new AsyncDebouncer(async (value: string) => {
  await searchAPI(value);
}, { wait: 500 });

// Called on each keystroke but only executes after 500ms of no typing
inputElement.addEventListener('input', () => {
  debouncer.maybeExecute(inputElement.value);
});

Type Parameters

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

TArgs extends Parameters<TFn>

Constructors

new AsyncDebouncer()

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

Defined in: async-debouncer.ts:60

Parameters

fn

TFn

initialOptions

AsyncDebouncerOptions

Returns

AsyncDebouncer<TFn, TArgs>

Methods

cancel()

ts
cancel(): void
cancel(): void

Defined in: async-debouncer.ts:94

Cancels any pending execution

Returns

void


getExecutionCount()

ts
getExecutionCount(): number
getExecutionCount(): number

Defined in: async-debouncer.ts:87

Returns the number of times the function has been executed

Returns

number


maybeExecute()

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

Defined in: async-debouncer.ts:110

Attempts to execute the debounced function If a call is already in progress, it will be queued

Parameters

args

...TArgs

Returns

Promise<void>


setOptions()

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

Defined in: async-debouncer.ts:74

Updates the debouncer options Returns the new options state

Parameters

newOptions

Partial<AsyncDebouncerOptions>

Returns

Required<AsyncDebouncerOptions>

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.