Defined in: async-queuer.ts:1
• TValue
optional concurrency: number;
optional concurrency: number;
Defined in: async-queuer.ts:5
Maximum number of concurrent tasks to process
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
() => Promise<TValue>
number
optional initialItems: () => Promise<TValue>[];
optional initialItems: () => Promise<TValue>[];
Defined in: async-queuer.ts:14
Initial items to populate the queuer with
Promise<TValue>
optional maxSize: number;
optional maxSize: number;
Defined in: async-queuer.ts:18
Maximum number of items allowed in the queuer
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
() => Promise<TValue>
AsyncQueuer<TValue>
void
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
AsyncQueuer<TValue>
void
optional started: boolean;
optional started: boolean;
Defined in: async-queuer.ts:33
Whether the queuer should start processing tasks immediately
optional wait: number;
optional wait: number;
Defined in: async-queuer.ts:37
Time in milliseconds to wait between processing items
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.