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

AngularAsyncQueuerOptions

Interface: AngularAsyncQueuerOptions<TValue, TSelected>

Defined in: angular-pacer/src/async-queuer/injectAsyncQueuer.ts:12

Extends

  • AsyncQueuerOptions<TValue>

Type Parameters

TValue

TValue

TSelected

TSelected = { }

Properties

onUnmount()?

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

Defined in: angular-pacer/src/async-queuer/injectAsyncQueuer.ts:21

Optional callback invoked when the component is destroyed. Receives the queuer instance. When provided, replaces the default cleanup (stop + abort); use it to call flush(), stop(), add logging, etc. When using onUnmount with flush, guard your callbacks since the component may already be destroyed.

Parameters

queuer

AngularAsyncQueuer<TValue, TSelected>

Returns

void