Name | Date | Size | |
---|---|---|---|
.. | 2012-02-16 18:58:16 | 100 | |
build.properties | 2011-10-07 20:11:16 | 120 | |
build.xml | 2011-10-07 20:11:16 | 288 | |
HISTORY.md | 2011-12-09 21:48:48 | 76 | |
js | 2012-01-13 00:23:54 | 3 | |
Makefile | 2011-10-07 20:11:16 | 47 | |
meta | 2011-10-07 20:11:16 | 3 | |
README.md | 2011-10-07 20:11:16 | 416 | |
tests | 2012-02-16 18:58:16 | 4 |
README.md
A concurrent parallel processor to help in running several async functions.
var stack = new Y.Parallel();
for (var i = 0; i < 15; i++) {
on: {
success: stack.add(function() {
Y.log('Done!');
})
}
});
}
stack.done(function() {
Y.log('All IO requests complete!');
});