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

SolidAsyncDebouncerOptions

Interface: SolidAsyncDebouncerOptions<TFn, TSelected>

Defined in: solid-pacer/src/async-debouncer/createAsyncDebouncer.ts:13

Extends

  • AsyncDebouncerOptions<TFn>

Type Parameters

TFn

TFn extends AnyAsyncFunction

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: solid-pacer/src/async-debouncer/createAsyncDebouncer.ts:21

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

Parameters

debouncer

SolidAsyncDebouncer<TFn, TSelected>

Returns

void