+
+
+
+
+
+
+
A specialized queue class that supports scheduling callbacks to execute
+sequentially, iteratively, even asynchronously.
+
Callbacks can be function refs or objects with the following keys. Only
+the fn key is required.
+
+fn -- The callback function
+context -- The execution context for the callbackFn.
+args -- Arguments to pass to callbackFn.
+timeout -- Millisecond delay before executing callbackFn.
+(Applies to each iterative execution of callback)
+iterations -- Number of times to repeat the callback.
+until -- Repeat the callback until this function returns
+true. This setting trumps iterations.
+autoContinue -- Set to false to prevent the AsyncQueue from
+executing the next callback in the Queue after
+the callback completes.
+id -- Name that can be used to get, promote, get the
+indexOf, or delete this callback.
+
+