'use strict';12Object.defineProperty(exports, "__esModule", {3value: true4});5exports.default = cargo;67var _queue = require('./internal/queue.js');89var _queue2 = _interopRequireDefault(_queue);1011function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }1213/**14* Creates a `cargoQueue` object with the specified payload. Tasks added to the15* cargoQueue will be processed together (up to the `payload` limit) in `concurrency` parallel workers.16* If the all `workers` are in progress, the task is queued until one becomes available. Once17* a `worker` has completed some tasks, each callback of those tasks is18* called. Check out [these](https://camo.githubusercontent.com/6bbd36f4cf5b35a0f11a96dcd2e97711ffc2fb37/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130382f62626330636662302d356632392d313165322d393734662d3333393763363464633835382e676966) [animations](https://camo.githubusercontent.com/f4810e00e1c5f5f8addbe3e9f49064fd5d102699/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130312f38346339323036362d356632392d313165322d383134662d3964336430323431336266642e676966)19* for how `cargo` and `queue` work.20*21* While [`queue`]{@link module:ControlFlow.queue} passes only one task to one of a group of workers22* at a time, and [`cargo`]{@link module:ControlFlow.cargo} passes an array of tasks to a single worker,23* the cargoQueue passes an array of tasks to multiple parallel workers.24*25* @name cargoQueue26* @static27* @memberOf module:ControlFlow28* @method29* @see [async.queue]{@link module:ControlFlow.queue}30* @see [async.cargo]{@link module:ControlFLow.cargo}31* @category Control Flow32* @param {AsyncFunction} worker - An asynchronous function for processing an array33* of queued tasks. Invoked with `(tasks, callback)`.34* @param {number} [concurrency=1] - An `integer` for determining how many35* `worker` functions should be run in parallel. If omitted, the concurrency36* defaults to `1`. If the concurrency is `0`, an error is thrown.37* @param {number} [payload=Infinity] - An optional `integer` for determining38* how many tasks should be processed per round; if omitted, the default is39* unlimited.40* @returns {module:ControlFlow.QueueObject} A cargoQueue object to manage the tasks. Callbacks can41* attached as certain properties to listen for specific events during the42* lifecycle of the cargoQueue and inner queue.43* @example44*45* // create a cargoQueue object with payload 2 and concurrency 246* var cargoQueue = async.cargoQueue(function(tasks, callback) {47* for (var i=0; i<tasks.length; i++) {48* console.log('hello ' + tasks[i].name);49* }50* callback();51* }, 2, 2);52*53* // add some items54* cargoQueue.push({name: 'foo'}, function(err) {55* console.log('finished processing foo');56* });57* cargoQueue.push({name: 'bar'}, function(err) {58* console.log('finished processing bar');59* });60* cargoQueue.push({name: 'baz'}, function(err) {61* console.log('finished processing baz');62* });63* cargoQueue.push({name: 'boo'}, function(err) {64* console.log('finished processing boo');65* });66*/67function cargo(worker, concurrency, payload) {68return (0, _queue2.default)(worker, concurrency, payload);69}70module.exports = exports['default'];7172