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.
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);
});
• TFn extends (...args) => Promise<any>
• TArgs extends Parameters<TFn>
new AsyncDebouncer<TFn, TArgs>(fn, initialOptions): AsyncDebouncer<TFn, TArgs>
new AsyncDebouncer<TFn, TArgs>(fn, initialOptions): AsyncDebouncer<TFn, TArgs>
Defined in: async-debouncer.ts:60
TFn
AsyncDebouncer<TFn, TArgs>
cancel(): void
cancel(): void
Defined in: async-debouncer.ts:94
Cancels any pending execution
void
getExecutionCount(): number
getExecutionCount(): number
Defined in: async-debouncer.ts:87
Returns the number of times the function has been executed
number
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
...TArgs
Promise<void>
setOptions(newOptions): Required<AsyncDebouncerOptions>
setOptions(newOptions): Required<AsyncDebouncerOptions>
Defined in: async-debouncer.ts:74
Updates the debouncer options Returns the new options state
Partial<AsyncDebouncerOptions>
Required<AsyncDebouncerOptions>
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.