src/cm/media/js/lib/yui/yui_3.0.0b1/releasenotes/README.queue
author Yves-Marie Haussonne <ymh.work+github@gmail.com>
Fri, 09 May 2014 18:35:26 +0200
changeset 656 a84519031134
parent 0 40c8f766c9b8
permissions -rw-r--r--
add link to "privacy policy" in the header test

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