src/cm/media/js/lib/yui/yui_3.0.0b1/releasenotes/README.queue
author raph
Tue, 20 Apr 2010 11:14:21 +0200
branchpreserve_html
changeset 259 0371caf8bcc6
parent 0 40c8f766c9b8
permissions -rw-r--r--
always use pandoc but in raw mode for html->html convert

Queue
    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.

    There are three submodules available for Queue:
    * queue-base - a simple queue with add(..) and next()
    * queue-promote - adds promote(c) and delete(c) to queue-base
    * queue-run - Adds a new fully featured queue class AsyncQueue with autorun
                  asynchronous callback execution, timeout chaining, event
                  broadcasting

    See the user guide and API docs for more detail.

3.0.0 beta1
    * Overhaul.  Broken into queue-base, queue-promote, and queue-run.

    See the user guide and API docs for more detail.

3.0.0pr2
    No changes

3.0.0pr1
    Initial release