function asyncThrottle<TFn>(fn, initialOptions): (...args) => Promise<void>
function asyncThrottle<TFn>(fn, initialOptions): (...args) => Promise<void>
Defined in: async-throttler.ts:189
Creates an async throttled function that limits how often the function can execute. The throttled function will execute at most once per wait period, even if called multiple times. If called while executing, it will wait until execution completes before scheduling the next call.
• TFn extends (...args) => Promise<any>
TFn
Omit<AsyncThrottlerOptions, "enabled">
Function
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
Promise<void>
const throttled = asyncThrottle(async () => {
await someAsyncOperation();
}, { wait: 1000 });
// This will execute at most once per second
await throttled();
await throttled(); // Waits 1 second before executing
const throttled = asyncThrottle(async () => {
await someAsyncOperation();
}, { wait: 1000 });
// This will execute at most once per second
await throttled();
await throttled(); // Waits 1 second before executing
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.