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

PreactAsyncBatcherOptions

Interface: PreactAsyncBatcherOptions<TValue, TSelected>

Defined in: preact-pacer/src/async-batcher/useAsyncBatcher.ts:12

Extends

  • AsyncBatcherOptions<TValue>

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: preact-pacer/src/async-batcher/useAsyncBatcher.ts:20

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

Parameters

batcher

PreactAsyncBatcher<TValue, TSelected>

Returns

void