FrostyFeng / queue-ts

A promise based worker queue with limited concurrency

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

queue-ts

GitHub license Travis Coveralls branch npm Commitizen friendly Greenkeeper badge

A promise based worker queue with limited concurrency.

Usage

// Create a queue with two worker threads
const queue = new Queue(2);
queue.onEmpty(() => {
  console.log('done');
});

// Adding tasks to do
queue.add(function task1() {});
queue.add(function task2() {});
queue.add(function task3() {});
queue.add(function task4() {});
queue.add(function task5() {});

The scheduled tasks will be executed but at most queue.concurrency task will be executed in parallel.

About

A promise based worker queue with limited concurrency

License:MIT License


Languages

Language:TypeScript 100.0%