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

ReactRateLimiterOptions

Interface: ReactRateLimiterOptions<TFn, TSelected>

Defined in: react-pacer/src/rate-limiter/useRateLimiter.ts:13

Extends

  • RateLimiterOptions<TFn>

Type Parameters

TFn

TFn extends AnyFunction

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: react-pacer/src/rate-limiter/useRateLimiter.ts:21

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

Parameters

rateLimiter

ReactRateLimiter<TFn, TSelected>

Returns

void