admin管理员组文章数量:1345111
I've been trying to understand how Mike Bostock's queue.js works, but I can't see how it manages to work. The part I don't understand is how the code manages to continue executing callbacks. In particular, I am unsure about the pop()
method (line 45). From my understanding, the method takes the next unprocessed, deferred function; appends a callback that (potentially) starts the next deferred function in the queue and executes when the immediately popped function finishes; then finally executes said function. My question is: what code executes this callback?
I've been trying to understand how Mike Bostock's queue.js works, but I can't see how it manages to work. The part I don't understand is how the code manages to continue executing callbacks. In particular, I am unsure about the pop()
method (line 45). From my understanding, the method takes the next unprocessed, deferred function; appends a callback that (potentially) starts the next deferred function in the queue and executes when the immediately popped function finishes; then finally executes said function. My question is: what code executes this callback?
- 1 That's some very poorly-mented code. – Lightness Races in Orbit Commented Dec 23, 2012 at 19:44
- 1 @LightnessRacesinOrbit: It's a very short and concise code. The variable names are descriptive and their function is mented. I don't see a reason to over-ment it... – Bergi Commented Dec 23, 2012 at 19:46
- @Bergi: I'm only asking for, like, one or two. Descriptions of what each function does. The OP's question demonstrates the need. – Lightness Races in Orbit Commented Dec 23, 2012 at 19:47
2 Answers
Reset to default 9Each deferred function does not actually return anything -- they are expected to execute their final argument as a callback. For example, this will not work
var foo = function(i) {
console.log(i);
return i;
}
var finished = function(error, results) {
console.log(results);
}
queue(2)
.defer(foo, 1)
.defer(foo, 2)
.defer(foo, 3)
.defer(foo, 4)
.awaitAll(finished); // only prints "1" and "2", since foo() doesn't execute callbacks
However, if we modify foo
to take a callback,
var foo = function(i, callback) {
console.log(i);
callback(null, i); // first argument is error reason, second is result
}
Then it will, as executing the callback causes queue
to continue.
If I understand the code correctly, queue.await()
and queue.awaitall()
put the callback in the await
instance variable, and then this is executed by notify()
.
本文标签: javascriptHow does queuejs workStack Overflow
版权声明:本文标题:javascript - How does queue.js work? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804962a2542008.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论