This package has been deprecated

Author message:

This module is now under the @mapbox namespace: install @mapbox/basic-queue instead

basic-queue

1.0.1 • Public • Published

basic-queue

example

var Queue = require('basic-queue');
var q = new Queue(request, concurrency / numWorkers);
 
function request() {
    q.add();
}

api

q = Queue(callback, concurrency)

callback is the function that this queue runs. Concurrency is how many simultaneous jobs should run of that function. callback will receive object and callback as arguments. If callback is a call with an error as a first argument, the queue will emit an error event.

q.add()

Tell the queue to start a new job if it isn't over the concurrency limit.

Dependents (3)

Package Sidebar

Install

npm i basic-queue

Weekly Downloads

101

Version

1.0.1

License

BSD

Last publish

Collaborators

  • mapbox-admin