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

SolidAsyncRateLimiterOptions

Interface: SolidAsyncRateLimiterOptions<TFn, TSelected>

Defined in: solid-pacer/src/async-rate-limiter/createAsyncRateLimiter.ts:13

Extends

  • AsyncRateLimiterOptions<TFn>

Type Parameters

TFn

TFn extends AnyAsyncFunction

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: solid-pacer/src/async-rate-limiter/createAsyncRateLimiter.ts:21

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

Parameters

rateLimiter

SolidAsyncRateLimiter<TFn, TSelected>

Returns

void