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

AngularAsyncRateLimiter

Interface: AngularAsyncRateLimiter<TFn, TSelected>

Defined in: angular-pacer/src/async-rate-limiter/injectAsyncRateLimiter.ts:24

Extends

  • Omit<AsyncRateLimiter<TFn>, "store">

Type Parameters

TFn

TFn extends AnyAsyncFunction

TSelected

TSelected = { }

Properties

state

ts
readonly state: Signal<Readonly<TSelected>>;
readonly state: Signal<Readonly<TSelected>>;

Defined in: angular-pacer/src/async-rate-limiter/injectAsyncRateLimiter.ts:33

Reactive state signal that will be updated when the async rate limiter state changes

Use this instead of rateLimiter.store.state


store

ts
readonly store: Store<Readonly<AsyncRateLimiterState<TFn>>>;
readonly store: Store<Readonly<AsyncRateLimiterState<TFn>>>;

Defined in: angular-pacer/src/async-rate-limiter/injectAsyncRateLimiter.ts:38

Deprecated

Use rateLimiter.state instead of rateLimiter.store.state if you want to read reactive state. The state on the store object is not reactive in Angular signals.