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

asyncQueue

Function: asyncQueue()

ts
function asyncQueue<TValue>(options): (fn, position) => Promise<TValue>
function asyncQueue<TValue>(options): (fn, position) => Promise<TValue>

Defined in: async-queuer.ts:428

Creates a new AsyncQueuer instance with the given options and returns a bound addItem function. The queuer is automatically started and ready to process items.

Type Parameters

TValue

Parameters

options

AsyncQueuerOptions<TValue> = {}

Configuration options for the AsyncQueuer

Returns

Function

A bound addItem function that can be used to add tasks to the queuer

Adds a task to the queuer

Parameters

fn

() => Promise<TValue>

position

"front" | "back"

Returns

Promise<TValue>

Example

ts
const enqueue = asyncQueue<string>();

// Add items to be processed
enqueue(async () => {
  return 'Hello';
});
const enqueue = asyncQueue<string>();

// Add items to be processed
enqueue(async () => {
  return 'Hello';
});
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.