Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1 KB

File metadata and controls

47 lines (29 loc) · 1 KB
id ThrottleStrategyOptions
title ThrottleStrategyOptions

Interface: ThrottleStrategyOptions

Defined in: packages/db/src/strategies/types.ts:74

Options for throttle strategy Ensures executions are evenly spaced over time

Properties

leading?

optional leading: boolean;

Defined in: packages/db/src/strategies/types.ts:78

Execute immediately on the first call


trailing?

optional trailing: boolean;

Defined in: packages/db/src/strategies/types.ts:80

Execute on the last call after wait period


wait

wait: number;

Defined in: packages/db/src/strategies/types.ts:76

Minimum wait time between executions (milliseconds)