|
0
|
1 |
Queue
|
|
|
2 |
The Queue module in its simplest form is just that: a simple queuing mechanism. Items added to the Queue are removed via next(). With all additional functionality included, it allows you to create a chain of function callbacks executed in order via setTimeout. It also supports timeout chained iterations for each item in the Queue.
|
|
|
3 |
|
|
|
4 |
There are three submodules available for Queue:
|
|
|
5 |
* queue-base - a simple queue with add(..) and next()
|
|
|
6 |
* queue-promote - adds promote(c) and delete(c) to queue-base
|
|
|
7 |
* queue-run - Adds a new fully featured queue class AsyncQueue with autorun
|
|
|
8 |
asynchronous callback execution, timeout chaining, event
|
|
|
9 |
broadcasting
|
|
|
10 |
|
|
|
11 |
See the user guide and API docs for more detail.
|
|
|
12 |
|
|
|
13 |
3.0.0 beta1
|
|
|
14 |
* Overhaul. Broken into queue-base, queue-promote, and queue-run.
|
|
|
15 |
|
|
|
16 |
See the user guide and API docs for more detail.
|
|
|
17 |
|
|
|
18 |
3.0.0pr2
|
|
|
19 |
No changes
|
|
|
20 |
|
|
|
21 |
3.0.0pr1
|
|
|
22 |
Initial release
|