Skip to content

seedalpha/queue

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

queue

wercker status

FIFO queue for node and browser

Example

Queue()
  .add(function(next){ console.log(1); next(); })
  .add(function(next){ console.log(2); next(); })
  .add(function(next){ console.log(3); next(); })
  .end(function(error){ console.log(error, 'finish'); }); // -> 1 ; 2 ; 3 ; undefined, 'finish'


var q = new Queue();
q.add(function(next){ setInterval(function(){ next(); }, 1000); });
q.end(function(error){}); // -> will throw an error, after 2000ms (on second tick)

var q = new Queue(4, 2);
q.add(function(n, m, next) { console.log(n,m); });
q.end(function(){}); // -> 4, 2

Author

Vladimir Popov rusintez@gmail.com

License

MIT

About

FIFO queue for node and browser

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%