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

useQueuer

Function: useQueuer()

ts
function useQueuer<TValue>(options): object
function useQueuer<TValue>(options): object

Defined in: react-pacer/src/queuer/useQueuer.ts:43

A React hook that creates and manages a Queuer instance.

This is a lower-level hook that provides direct access to the Queuer's functionality without any built-in state management. This allows you to integrate it with any state management solution you prefer (useState, Redux, Zustand, etc.) by utilizing the onUpdate callback.

For a hook with built-in state management, see useQueuerState.

The Queuer extends the base Queue to add processing capabilities. Items are processed synchronously in order, with optional delays between processing each item. The queuer includes an internal tick mechanism that can be started and stopped, making it useful as a scheduler. When started, it will process one item per tick, with an optional wait time between ticks.

By default uses FIFO (First In First Out) behavior, but can be configured for LIFO (Last In First Out) by specifying 'front' position when adding items.

Type Parameters

TValue

Parameters

options

QueuerOptions<TValue> = {}

Returns

object

addItem()

ts
addItem: (item, position?) => boolean;
addItem: (item, position?) => boolean;

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

Parameters

item

TValue

position?

QueuePosition

Returns

boolean

true if item was added, false if queuer is full

clear()

ts
clear: () => void;
clear: () => void;

Removes all items from the queuer

Returns

void

getAllItems()

ts
getAllItems: () => TValue[];
getAllItems: () => TValue[];

Returns a copy of all items in the queuer

Returns

TValue[]

getExecutionCount()

ts
getExecutionCount: () => number;
getExecutionCount: () => number;

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

Returns

number

getNextItem()

ts
getNextItem: (position?) => undefined | TValue;
getNextItem: (position?) => undefined | TValue;

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

Parameters

position?

QueuePosition

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;

Returns true if the queuer is empty

Returns

boolean

isFull()

ts
isFull: () => boolean;
isFull: () => boolean;

Returns true if the queuer is full

Returns

boolean

isIdle()

ts
isIdle: () => boolean;
isIdle: () => boolean;

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

Returns

boolean

isRunning()

ts
isRunning: () => boolean;
isRunning: () => boolean;

Returns true if the queuer is running

Returns

boolean

onUpdate()

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

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;

Returns an item without removing it

Parameters

position?

QueuePosition

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;

Resets the queuer to its initial state

Parameters

withInitialItems?

boolean

Returns

void

size()

ts
size: () => number;
size: () => number;

Returns the current size of the queuer

Returns

number

start()

ts
start: () => void;
start: () => void;

Starts the queuer and processes items

Returns

void

stop()

ts
stop: () => void;
stop: () => void;

Stops the queuer from processing items

Returns

void

Example

tsx
// Example with custom state management and scheduling
const [items, setItems] = useState([]);

const queue = useQueuer({
  started: true, // Start processing immediately
  wait: 1000,    // Process one item every second
  onUpdate: (queue) => setItems(queue.getAllItems()),
  getPriority: (item) => item.priority // Process higher priority items first
});

// Add items to process - they'll be handled automatically
queue.addItem('task1');
queue.addItem('task2');

// Control the scheduler
queue.stop();  // Pause processing
queue.start(); // Resume processing
// Example with custom state management and scheduling
const [items, setItems] = useState([]);

const queue = useQueuer({
  started: true, // Start processing immediately
  wait: 1000,    // Process one item every second
  onUpdate: (queue) => setItems(queue.getAllItems()),
  getPriority: (item) => item.priority // Process higher priority items first
});

// Add items to process - they'll be handled automatically
queue.addItem('task1');
queue.addItem('task2');

// Control the scheduler
queue.stop();  // Pause processing
queue.start(); // Resume processing
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.