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

PreactAsyncThrottlerOptions

Interface: PreactAsyncThrottlerOptions<TFn, TSelected>

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

Extends

  • AsyncThrottlerOptions<TFn>

Type Parameters

TFn

TFn extends AnyAsyncFunction

TSelected

TSelected = { }

Properties

onUnmount()?

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

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

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

Parameters

throttler

PreactAsyncThrottler<TFn, TSelected>

Returns

void