0.0.3 • Published 10 years ago

batchq v0.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

BatchQ

Simple queue implementation which calls a callback every time the capacity is reached

Example

var BatchQueue = require('batchq');

var batchq = new BatchQueue(5, function() {
    console.log(this.splice(0,this.length)) //Will print [0,1,2,3,4]
});

batchq.push(0,1,2,3,4);
console.log(batchq.length); //Will be 1 as callback was executed
batchq.push(5);
batch.flush();  //Forces the callback to run as capacity hasn't been reached
0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago