cargo.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = cargo;
  6. var _queue = require('./internal/queue.js');
  7. var _queue2 = _interopRequireDefault(_queue);
  8. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  9. /**
  10. * Creates a `cargo` object with the specified payload. Tasks added to the
  11. * cargo will be processed altogether (up to the `payload` limit). If the
  12. * `worker` is in progress, the task is queued until it becomes available. Once
  13. * the `worker` has completed some tasks, each callback of those tasks is
  14. * called. Check out [these](https://camo.githubusercontent.com/6bbd36f4cf5b35a0f11a96dcd2e97711ffc2fb37/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130382f62626330636662302d356632392d313165322d393734662d3333393763363464633835382e676966) [animations](https://camo.githubusercontent.com/f4810e00e1c5f5f8addbe3e9f49064fd5d102699/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130312f38346339323036362d356632392d313165322d383134662d3964336430323431336266642e676966)
  15. * for how `cargo` and `queue` work.
  16. *
  17. * While [`queue`]{@link module:ControlFlow.queue} passes only one task to one of a group of workers
  18. * at a time, cargo passes an array of tasks to a single worker, repeating
  19. * when the worker is finished.
  20. *
  21. * @name cargo
  22. * @static
  23. * @memberOf module:ControlFlow
  24. * @method
  25. * @see [async.queue]{@link module:ControlFlow.queue}
  26. * @category Control Flow
  27. * @param {AsyncFunction} worker - An asynchronous function for processing an array
  28. * of queued tasks. Invoked with `(tasks, callback)`.
  29. * @param {number} [payload=Infinity] - An optional `integer` for determining
  30. * how many tasks should be processed per round; if omitted, the default is
  31. * unlimited.
  32. * @returns {module:ControlFlow.QueueObject} A cargo object to manage the tasks. Callbacks can
  33. * attached as certain properties to listen for specific events during the
  34. * lifecycle of the cargo and inner queue.
  35. * @example
  36. *
  37. * // create a cargo object with payload 2
  38. * var cargo = async.cargo(function(tasks, callback) {
  39. * for (var i=0; i<tasks.length; i++) {
  40. * console.log('hello ' + tasks[i].name);
  41. * }
  42. * callback();
  43. * }, 2);
  44. *
  45. * // add some items
  46. * cargo.push({name: 'foo'}, function(err) {
  47. * console.log('finished processing foo');
  48. * });
  49. * cargo.push({name: 'bar'}, function(err) {
  50. * console.log('finished processing bar');
  51. * });
  52. * await cargo.push({name: 'baz'});
  53. * console.log('finished processing baz');
  54. */
  55. function cargo(worker, payload) {
  56. return (0, _queue2.default)(worker, 1, payload);
  57. }
  58. module.exports = exports['default'];