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

QueuerOptions

Interface: QueuerOptions<TValue>

Defined in: queuer.ts:4

Options for configuring a Queuer instance

Type Parameters

TValue

Properties

getPriority()?

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

Defined in: queuer.ts:9

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

Parameters

item

TValue

Returns

number


initialItems?

ts
optional initialItems: TValue[];
optional initialItems: TValue[];

Defined in: queuer.ts:13

Initial items to populate the queuer with


maxSize?

ts
optional maxSize: number;
optional maxSize: number;

Defined in: queuer.ts:17

Maximum number of items allowed in the queuer


onGetNextItem()?

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

Defined in: queuer.ts:21

Callback fired whenever an item is removed from the queuer

Parameters

item

TValue

queuer

Queuer<TValue>

Returns

void


onUpdate()?

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

Defined in: queuer.ts:25

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

Parameters

queuer

Queuer<TValue>

Returns

void


started?

ts
optional started: boolean;
optional started: boolean;

Defined in: queuer.ts:29

Whether the queuer should start processing tasks immediately


wait?

ts
optional wait: number;
optional wait: number;

Defined in: queuer.ts:33

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.