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

PreactAsyncQueuerOptions

Interface: PreactAsyncQueuerOptions<TValue, TSelected>

Defined in: preact-pacer/src/async-queuer/useAsyncQueuer.ts:12

Extends

  • AsyncQueuerOptions<TValue>

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: preact-pacer/src/async-queuer/useAsyncQueuer.ts:20

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

Parameters

queuer

PreactAsyncQueuer<TValue, TSelected>

Returns

void