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

ThrottlerOptions

Interface: ThrottlerOptions

Defined in: throttler.ts:4

Options for configuring a throttled function

Properties

enabled?

ts
optional enabled: boolean;
optional enabled: boolean;

Defined in: throttler.ts:9

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


leading?

ts
optional leading: boolean;
optional leading: boolean;

Defined in: throttler.ts:14

Whether to execute on the leading edge of the timeout. Defaults to true.


trailing?

ts
optional trailing: boolean;
optional trailing: boolean;

Defined in: throttler.ts:19

Whether to execute on the trailing edge of the timeout. Defaults to true.


wait

ts
wait: number;
wait: number;

Defined in: throttler.ts:23

Time window in milliseconds during which the function can only be executed once

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.