GithubHelp home page GithubHelp logo

queue-batch's Introduction

queue-batch

A minimalistic queue processor which emits events.

Example

var Processor = require('queue-batch');

var longRunningFunction = (item, next) => {
    console.log('got a new item to process');
    console.log(item);
    setTimeout(next, 1000);
};

var processor = new Processor(longRunningFunction);
processor.on('error', (error) => {
    console.error('an error occured', error);
});
processor.on('empty', () => {
    console.log('queue exhausted');
});

processor.push('item');
processor.push('one', 'two');
processor.concat([1, 2, 3]);

Which will output

got a new item to process
item
got a new item to process
one
got a new item to process
two
got a new item to process
1
got a new item to process
2
got a new item to process
3

Then after a second or so

queue exhausted

API

new Processor(callback, concurrency = 10, queue = []);

  • callback: function(item, next: function(error)) is a required function which will be invoked for each item pushed or concated to the processor.
  • currency: ?int is an optional positive integer, decribing the number of concurrent items can be handled by the callback.
  • queue: ?Array is an optional array. If specified the items will automatically be added to the queue and the processor will start working.

Creates a new batch processor with a handler callback, optional concurrency limit and queue. The batch processor is an EventEmitter and will emit an empty even, when the queue has been completed. If at any point the callback function returns an error to the next callback option the error event will be emitted on the processor object.

Processor.prototype.push(item1[, item2[, ...itemn]]);

  • item1 ... itemn each argument provided will be push onto the queue. If the batch processor is not running at the concurrency limit the first item will immediately start getting processed.

Processor.prototype.concat(array);

  • `array' is an array of items to push onto the queue one after the other.

This has the same effect as processor.push(array[0], ... , array[n]); or array.forEach((item) => processor.push(item));

Processor.prototype.on(eventName, handler);

  • eventName: 'error' | 'empty' the event to which you wish to attach a handler
  • handler: function the desired handler function.

Events

error - processor.on('error', function (error) { });

Emitted if an errors has been reported back via the processor callback function through the next callback.

var errorCallback = (item, next) => {
    if (item === 2) { return next('2 is an exceptional number'); }
    next();
};
var processor = new Processor(errorCallback);
processor.on('error', (error) => {
    console.error(error); // outputs '2 is an exceptional number'
});

empty - processor.on('empty', function () { });

Emitted when the queue no longer contains any items.

queue-batch's People

Contributors

divinegod avatar dependabot[bot] avatar mauricebutler avatar

Watchers

 avatar James Cloos avatar  avatar

Forkers

mauricebutler

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.