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

QueuePosition

Type Alias: QueuePosition

ts
type QueuePosition = "front" | "back";
type QueuePosition = "front" | "back";

Defined in: queuer.ts:193

Position type for addItem and getNextItem operations.

  • 'front': Operate on the front of the queue (FIFO)
  • 'back': Operate on the back of the queue (LIFO)