File: QueuerState.md | Updated: 11/15/2025
Search...
+ K
Auto
Docs Examples GitHub Contributors
Docs Examples GitHub Contributors
Docs Examples GitHub Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Maintainers Partners Support Learn StatsBETA Discord Merch Blog GitHub Ethos Brand Guide
Documentation
Framework
React
Version
Latest
Search...
+ K
Menu
Getting Started
Guides
API Reference
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference
Batcher API Reference
Debouncer Examples
Throttler Examples
Rate Limiter Examples
Queue Examples
Batcher Examples
TanStack Query Examples
Framework
React
Version
Latest
Menu
Getting Started
Guides
API Reference
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference
Batcher API Reference
Debouncer Examples
Throttler Examples
Rate Limiter Examples
Queue Examples
Batcher Examples
TanStack Query Examples
On this page
Copy Markdown
Interface: QueuerState<TValue>
==============================
Defined in: queuer.ts:5
Type Parameters
---------------
### TValue
TValue
Properties
----------
### addItemCount
ts
addItemCount: number;
addItemCount: number;
Defined in: queuer.ts:9
Number of times addItem has been called (for reduction calculations)
ts
executionCount: number;
executionCount: number;
Defined in: queuer.ts:13
Number of items that have been processed by the queuer
ts
expirationCount: number;
expirationCount: number;
Defined in: queuer.ts:17
Number of items that have been removed from the queue due to expiration
ts
isEmpty: boolean;
isEmpty: boolean;
Defined in: queuer.ts:21
Whether the queuer has no items to process (items array is empty)
ts
isFull: boolean;
isFull: boolean;
Defined in: queuer.ts:25
Whether the queuer has reached its maximum capacity
ts
isIdle: boolean;
isIdle: boolean;
Defined in: queuer.ts:29
Whether the queuer is not currently processing any items
ts
isRunning: boolean;
isRunning: boolean;
Defined in: queuer.ts:33
Whether the queuer is active and will process items automatically
ts
items: TValue[];
items: TValue[];
Defined in: queuer.ts:37
Array of items currently waiting to be processed
ts
itemTimestamps: number[];
itemTimestamps: number[];
Defined in: queuer.ts:41
Timestamps when items were added to the queue for expiration tracking
ts
pendingTick: boolean;
pendingTick: boolean;
Defined in: queuer.ts:45
Whether the queuer has a pending timeout for processing the next item
ts
rejectionCount: number;
rejectionCount: number;
Defined in: queuer.ts:49
Number of items that have been rejected from being added to the queue
ts
size: number;
size: number;
Defined in: queuer.ts:53
Number of items currently in the queue
ts
status: "idle" | "running" | "stopped";
status: "idle" | "running" | "stopped";
Defined in: queuer.ts:57
Current processing status - 'idle' when not processing, 'running' when active, 'stopped' when paused
