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

PreactBatcherOptions

Interface: PreactBatcherOptions<TValue, TSelected>

Defined in: preact-pacer/src/batcher/useBatcher.ts:9

Extends

  • BatcherOptions<TValue>

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: preact-pacer/src/batcher/useBatcher.ts:17

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

Parameters

batcher

PreactBatcher<TValue, TSelected>

Returns

void