timequeue.js
A queue with custom concurrency and time limits. Inspired by caolan/async#queue, but with variable number of arguments in the worker, events, and with optional time limits.

Usage
var TimeQueue = require('timequeue');
function worker(arg1, arg2, callback) {
someAsyncFunction(calculation(arg1, arg2), callback);
}
var q = new TimeQueue(worker, { concurrency: 5, every: 1000 });
q.push(42, 24);
q.push(2, 74);
q.push(2, 2, function(err) {
});
API
new TimeQueue(worker, [options])
Creates a new instance of a queue. Worker must be a function with a callback for its last argument. The callback must be called in order for the queue to know when the worker has finished a task. options defaults to the following
{
concurrency: 1
, every: 0
, maxQueued: Infinity
, timeout: 0
}
All of these options can later be edited on the queue instance.
TimeQueue#active
How many tasks are currently active.
TimeQueue#intransit
If you use the every option to queue up tasks, this property will be delayed from being updated until there are free spots open for new tasks to begin. active will be updated as soon as a task finishes, even if the next one is just a timeout around the corner.
TimeQueue#queued
How many tasks are currently in the queue.
TimeQueue#finished
How many tasks have finished in total.
TimeQueue#push(data..., [callback])
Pushes a new task to the queue. Any number of arguments can be given. An optional callback can also be given as the last parameter. The callback will be called when the task is finished or if there was any error.
TimeQueue#die()
Empties queue and clears the timeouts TimeQueue sets to keep track of running tasks. Currently running tasks will still complete.
Events
Event: 'error'
Emitted when there is an error processing a task and a callback isn't given to the push method.
Event: 'full'
Queue is full.
Event: 'empty'
Queue is empty, with tasks still running.
Event: 'drain'
Queue is empty and last task has finished.
Install
npm install timequeue
Tests
Tests are written with mocha
npm test
License
MIT