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

SolidAsyncQueuerOptions

Interface: SolidAsyncQueuerOptions<TValue, TSelected>

Defined in: solid-pacer/src/async-queuer/createAsyncQueuer.ts:12

Extends

  • AsyncQueuerOptions<TValue>

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: solid-pacer/src/async-queuer/createAsyncQueuer.ts:20

Optional callback invoked when the owning 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

SolidAsyncQueuer<TValue, TSelected>

Returns

void