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

AsyncQueuerOptions

Interface: AsyncQueuerOptions<TValue>

Defined in: async-queuer.ts:1

Type Parameters

TValue

Properties

concurrency?

ts
optional concurrency: number;
optional concurrency: number;

Defined in: async-queuer.ts:5

Maximum number of concurrent tasks to process


getPriority()?

ts
optional getPriority: (item) => number;
optional getPriority: (item) => number;

Defined in: async-queuer.ts:10

Function to determine priority of items in the queuer Higher priority items will be processed first

Parameters

item

() => Promise<TValue>

Returns

number


initialItems?

ts
optional initialItems: () => Promise<TValue>[];
optional initialItems: () => Promise<TValue>[];

Defined in: async-queuer.ts:14

Initial items to populate the queuer with

Returns

Promise<TValue>


maxSize?

ts
optional maxSize: number;
optional maxSize: number;

Defined in: async-queuer.ts:18

Maximum number of items allowed in the queuer


onGetNextItem()?

ts
optional onGetNextItem: (item, queuer) => void;
optional onGetNextItem: (item, queuer) => void;

Defined in: async-queuer.ts:22

Callback fired whenever an item is removed from the queuer

Parameters

item

() => Promise<TValue>

queuer

AsyncQueuer<TValue>

Returns

void


onUpdate()?

ts
optional onUpdate: (queuer) => void;
optional onUpdate: (queuer) => void;

Defined in: async-queuer.ts:29

Callback fired whenever an item is added or removed from the queuer

Parameters

queuer

AsyncQueuer<TValue>

Returns

void


started?

ts
optional started: boolean;
optional started: boolean;

Defined in: async-queuer.ts:33

Whether the queuer should start processing tasks immediately


wait?

ts
optional wait: number;
optional wait: number;

Defined in: async-queuer.ts:37

Time in milliseconds to wait between processing items

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.