var parallel = require('../parallel.js');
// API
module.exports = ReadableParallel;
/**
* Streaming wrapper to `asynckit.parallel`
*
* @param {array|object} list - array or object (named list) to iterate over
* @param {function} iterator - iterator to run
* @param {function} callback - invoked when all elements processed
* @returns {stream.Readable#}
*/
function ReadableParallel(list, iterator, callback)
{
if (!(this instanceof ReadableParallel))
{
return new ReadableParallel(list, iterator, callback);
}
// turn on object mode
ReadableParallel.super_.call(this, {objectMode: true});
this._start(parallel, list, iterator, callback);
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| abort.js | File | 497 B | 0644 |
|
| async.js | File | 599 B | 0644 |
|
| defer.js | File | 441 B | 0644 |
|
| iterate.js | File | 1.75 KB | 0644 |
|
| readable_asynckit.js | File | 1.57 KB | 0644 |
|
| readable_parallel.js | File | 673 B | 0644 |
|
| readable_serial.js | File | 655 B | 0644 |
|
| readable_serial_ordered.js | File | 941 B | 0644 |
|
| state.js | File | 941 B | 0644 |
|
| streamify.js | File | 2.89 KB | 0644 |
|
| terminator.js | File | 533 B | 0644 |
|