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?

Share Improve this question edited Dec 23, 2012 at 19:34 duckworthd asked Dec 23, 2012 at 5:31 duckworthdduckworthd 15.2k16 gold badges55 silver badges71 bronze badges 3
  • 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
Add a ment  | 

2 Answers 2

Reset to default 9

Each 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