Framework
Version
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference

Queuer

Class: Queuer<TValue>

Defined in: queuer.ts:100

A flexible queue data structure that defaults to FIFO (First In First Out) behavior with optional position overrides for stack-like or double-ended operations.

The queuer can automatically process items as they are added, with configurable wait times between processing each item. Processing can be started/stopped and the queuer will maintain its state.

Supports priority-based ordering when a getPriority function is provided. Items with higher priority values will be processed first.

Default queue behavior:

  • addItem(item): adds to back of queuer
  • getNextItem(): removes and returns from front of queuer

Stack (LIFO) behavior:

  • addItem(item, 'back'): adds to back
  • getNextItem('back'): removes and returns from back

Double-ended queuer behavior:

  • addItem(item, position): adds to specified position ('front' or 'back')
  • getNextItem(position): removes and returns from specified position

Processing behavior:

  • start(): begins processing items in the queuer
  • stop(): pauses processing
  • wait: configurable delay between processing items
  • onUpdate/onGetNextItem: callbacks for monitoring queuer state

Example

ts
// FIFO queuer
const queuer = new Queuer<number>();
queuer.addItem(1); // [1]
queuer.addItem(2); // [1, 2]
queuer.getNextItem(); // returns 1, queuer is [2]

// Priority queuer with processing
const priorityQueue = new Queuer<number>({
  getPriority: (n) => n, // Higher numbers have priority
  started: true, // Begin processing immediately
  wait: 1000, // Wait 1s between items
  onGetNextItem: (item) => console.log(item)
});
priorityQueue.addItem(1); // [1]
priorityQueue.addItem(3); // [3, 1] - 3 processed first
priorityQueue.addItem(2); // [3, 2, 1]
// FIFO queuer
const queuer = new Queuer<number>();
queuer.addItem(1); // [1]
queuer.addItem(2); // [1, 2]
queuer.getNextItem(); // returns 1, queuer is [2]

// Priority queuer with processing
const priorityQueue = new Queuer<number>({
  getPriority: (n) => n, // Higher numbers have priority
  started: true, // Begin processing immediately
  wait: 1000, // Wait 1s between items
  onGetNextItem: (item) => console.log(item)
});
priorityQueue.addItem(1); // [1]
priorityQueue.addItem(3); // [3, 1] - 3 processed first
priorityQueue.addItem(2); // [3, 2, 1]

Type Parameters

• TValue

Constructors

new Queuer()

ts
new Queuer<TValue>(initialOptions): Queuer<TValue>
new Queuer<TValue>(initialOptions): Queuer<TValue>

Defined in: queuer.ts:108

Parameters

initialOptions

QueuerOptions<TValue> = defaultOptions

Returns

Queuer<TValue>

Properties

options

ts
protected options: Required<QueuerOptions<TValue>>;
protected options: Required<QueuerOptions<TValue>>;

Defined in: queuer.ts:101

Methods

addItem()

ts
addItem(item, position): boolean
addItem(item, position): boolean

Defined in: queuer.ts:165

Adds an item to the queuer and starts processing if not already running

Parameters

item

TValue

position

QueuePosition = 'back'

Returns

boolean

true if item was added, false if queuer is full


clear()

ts
clear(): void
clear(): void

Defined in: queuer.ts:269

Removes all items from the queuer

Returns

void


getAllItems()

ts
getAllItems(): TValue[]
getAllItems(): TValue[]

Defined in: queuer.ts:289

Returns a copy of all items in the queuer

Returns

TValue[]


getExecutionCount()

ts
getExecutionCount(): number
getExecutionCount(): number

Defined in: queuer.ts:296

Returns the number of items that have been removed from the queuer

Returns

number


getNextItem()

ts
getNextItem(position): undefined | TValue
getNextItem(position): undefined | TValue

Defined in: queuer.ts:210

Removes and returns an item from the queuer using shift (default) or pop

Parameters

position

QueuePosition = 'front'

Returns

undefined | TValue

Example

ts
// Standard FIFO queuer
queuer.getNextItem()
// Stack-like behavior (LIFO)
queuer.getNextItem('back')
// Standard FIFO queuer
queuer.getNextItem()
// Stack-like behavior (LIFO)
queuer.getNextItem('back')

isEmpty()

ts
isEmpty(): boolean
isEmpty(): boolean

Defined in: queuer.ts:248

Returns true if the queuer is empty

Returns

boolean


isFull()

ts
isFull(): boolean
isFull(): boolean

Defined in: queuer.ts:255

Returns true if the queuer is full

Returns

boolean


isIdle()

ts
isIdle(): boolean
isIdle(): boolean

Defined in: queuer.ts:341

Returns true if the queuer is running but has no items to process

Returns

boolean


isRunning()

ts
isRunning(): boolean
isRunning(): boolean

Defined in: queuer.ts:334

Returns true if the queuer is running

Returns

boolean


onUpdate()

ts
onUpdate(cb): () => void
onUpdate(cb): () => void

Defined in: queuer.ts:303

Adds a callback to be called when an item is processed

Parameters

cb

(item) => void

Returns

Function

Returns

void


peek()

ts
peek(position): undefined | TValue
peek(position): undefined | TValue

Defined in: queuer.ts:238

Returns an item without removing it

Parameters

position

QueuePosition = 'front'

Returns

undefined | TValue

Example

ts
// Look at next item to getNextItem
queuer.peek()
// Look at last item (like stack top)
queuer.peek('back')
// Look at next item to getNextItem
queuer.peek()
// Look at last item (like stack top)
queuer.peek('back')

reset()

ts
reset(withInitialItems?): void
reset(withInitialItems?): void

Defined in: queuer.ts:277

Resets the queuer to its initial state

Parameters

withInitialItems?

boolean

Returns

void


setOptions()

ts
setOptions(newOptions): QueuerOptions<TValue>
setOptions(newOptions): QueuerOptions<TValue>

Defined in: queuer.ts:154

Updates the queuer options Returns the new options state

Parameters

newOptions

Partial<QueuerOptions<TValue>>

Returns

QueuerOptions<TValue>


size()

ts
size(): number
size(): number

Defined in: queuer.ts:262

Returns the current size of the queuer

Returns

number


start()

ts
start(): void
start(): void

Defined in: queuer.ts:322

Starts the queuer and processes items

Returns

void


stop()

ts
stop(): void
stop(): void

Defined in: queuer.ts:313

Stops the queuer from processing items

Returns

void


tick()

ts
protected tick(): void
protected tick(): void

Defined in: queuer.ts:127

Processes items in the queuer

Returns

void

Subscribe to Bytes

Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.

Bytes

No spam. Unsubscribe at any time.