Sha256: 289df300cd862fe2e7d4cc8dcf69ff65bbb8502b94db6ab46efe0de6bf9c863b

Contents?: true

Size: 1.78 KB

Versions: 22

Compression:

Stored size: 1.78 KB

Contents

# batch

  Simple async batch with concurrency control and progress reporting.

## Installation

```
$ npm install batch
```

## API

```js
var Batch = require('batch')
  , batch = new Batch;

batch.concurrency(4);

ids.forEach(function(id){
  batch.push(function(done){
    User.get(id, done);
  });
});

batch.on('progress', function(e){

});

batch.end(function(err, users){

});
```

### Progress events

  Contain the "job" index, response value, duration information, and completion data.

```js
{ index: 1,
  value: 'bar',
  pending: 2,
  total: 3,
  complete: 2,
  percent: 66,
  start: Thu Oct 04 2012 12:25:53 GMT-0700 (PDT),
  end: Thu Oct 04 2012 12:25:53 GMT-0700 (PDT),
  duration: 0 }
```

## License

(The MIT License)

Copyright (c) 2013 TJ Holowaychuk <tj@vision-media.ca>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
lanes-0.8.0 node_modules/batch/Readme.md
blackboard-3.1.9 lib/site_template/node_modules/batch/Readme.md
hooch-0.4.2 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.4.1 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.4.0 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
gulp_assets-1.0.0.pre.5 template/node_modules/webpack-dev-server/node_modules/serve-index/node_modules/batch/Readme.md
gulp_assets-1.0.0.pre.4 template/node_modules/webpack-dev-server/node_modules/serve-index/node_modules/batch/Readme.md
gulp_assets-1.0.0.pre.3 template/node_modules/webpack-dev-server/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.3.0 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.2.1 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.2.0 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.1.0 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.0.8 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.0.7 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
hooch-0.0.6 jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
entangled-0.0.16 spec/dummy/public/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
entangled-0.0.15 spec/dummy/public/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
entangled-0.0.14 spec/dummy/public/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
entangled-0.0.13 spec/dummy/public/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md
entangled-0.0.12 spec/dummy/public/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md