Docs
CodeRabbit
Cloudflare
Railway
SerpAPI
OpenRouter
Netlify
AG Grid
Clerk
WorkOS
Prisma
Unkey
Sentry
Electric
CodeRabbit
Cloudflare
Railway
SerpAPI
OpenRouter
Netlify
AG Grid
Clerk
WorkOS
Prisma
Unkey
Sentry
Electric
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference
Batcher API Reference
Throttler API Reference

PreactThrottlerOptions

Interface: PreactThrottlerOptions<TFn, TSelected>

Defined in: preact-pacer/src/throttler/useThrottler.ts:13

Extends

  • ThrottlerOptions<TFn>

Type Parameters

TFn

TFn extends AnyFunction

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: preact-pacer/src/throttler/useThrottler.ts:21

Optional callback invoked when the component unmounts. Receives the throttler instance. When provided, replaces the default cleanup (cancel); use it to call flush(), reset(), cancel(), add logging, etc.

Parameters

throttler

PreactThrottler<TFn, TSelected>

Returns

void