Docs
Code Rabbit
Cloudflare
AG Grid
Netlify
Neon
WorkOS
Clerk
Convex
Electric
Sentry
Prisma
Strapi
Unkey
UI.dev
Code Rabbit
Cloudflare
AG Grid
Netlify
Neon
WorkOS
Clerk
Convex
Electric
Sentry
Prisma
Strapi
Unkey
UI.dev
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)