Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 1.7 KB

README.md

File metadata and controls

50 lines (40 loc) · 1.7 KB

batch-then

NPM version Build status Test coverage Dependency Status License Downloads

Run multiple functions in parallel with concurrency. Only supports functions that return promises.

var Batch = require('batch-then');

var batch = new Batch();
batch.concurrency(2);

batch.push(function () {
  return Promise.resolve(1);
});

batch.push(function () {
  return Promise.resolve(2);
});

batch.push(function () {
  return Promise.resolve(3);
});

batch.then( => );