1.1.0 • Published 8 years ago

batch-then v1.1.0

Weekly downloads
324
License
MIT
Repository
github
Last release
8 years ago

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( => );