Framework
Version
防抖器 API 參考
節流器 API 參考
速率限制器 API 參考
佇列 API 參考

ThrottlerOptions

Interface: ThrottlerOptions<TFn>

Defined in: throttler.ts:6

Options for configuring a throttled function

Type Parameters

TFn extends AnyFunction

Properties

enabled?

ts
optional enabled: boolean;
optional enabled: boolean;

Defined in: throttler.ts:11

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:16

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


onExecute()?

ts
optional onExecute: (throttler) => void;
optional onExecute: (throttler) => void;

Defined in: throttler.ts:20

Callback function that is called after the function is executed

Parameters

throttler

Throttler<TFn>

Returns

void


trailing?

ts
optional trailing: boolean;
optional trailing: boolean;

Defined in: throttler.ts:25

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


wait

ts
wait: number;
wait: number;

Defined in: throttler.ts:29

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.