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

AngularThrottlerOptions

Interface: AngularThrottlerOptions<TFn, TSelected>

Defined in: angular-pacer/src/throttler/injectThrottler.ts:13

Extends

  • ThrottlerOptions<TFn>

Type Parameters

TFn

TFn extends AnyFunction

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: angular-pacer/src/throttler/injectThrottler.ts:21

Optional callback invoked when the component is destroyed. Receives the throttler instance. When provided, replaces the default cleanup (cancel); use it to call flush(), cancel(), add logging, etc.

Parameters

throttler

AngularThrottler<TFn, TSelected>

Returns

void