queue:节点和浏览器的 FIFO 队列

时间:2024-07-07 23:05:28
【文件属性】:

文件名称:queue:节点和浏览器的 FIFO 队列

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-07 23:05:28

JavaScript

队列 节点和浏览器的 FIFO 队列 例子 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){}); // -> w


【文件预览】:
queue-master
----package.json(703B)
----LICENSE(1KB)
----wercker.yml(68B)
----spec()
--------test.js(2KB)
----.gitignore(50B)
----lib()
--------queue()
----README.md(891B)

网友评论