Kévin Tessier 04fab6ba46 install gulp | vor 6 Jahren | |
---|---|---|
.. | ||
lib | vor 6 Jahren | |
.jscs.json | vor 6 Jahren | |
.jshintignore | vor 6 Jahren | |
.jshintrc | vor 6 Jahren | |
.npmignore | vor 6 Jahren | |
.travis.yml | vor 6 Jahren | |
CHANGELOG.md | vor 6 Jahren | |
CONTRIBUTION.md | vor 6 Jahren | |
LICENSE | vor 6 Jahren | |
Makefile | vor 6 Jahren | |
README.md | vor 6 Jahren | |
bower.json | vor 6 Jahren | |
package.json | vor 6 Jahren |
vow-queue is a module for task queue with weights and priorities
Module can be installed using npm
:
npm install vow-queue
or bower
:
bower install vow-queue
var Queue = require('vow-queue'),
queue = new Queue({ weightLimit : 10 });
queue.enqueue(function() { // simple function
return 2 * 2;
});
queue.enqueue(function() { // function returns a promise
// do job
return promise;
});
queue.enqueue( // task with custom priority and weight
function() {
// do job
},
{
priority : 3, // this task will be started before the previous two
weight : 5
});
queue.start(); // starts tasks processing
queue.enqueue(function() { }); // and enqueue yet another task