Giter VIP home page Giter VIP logo

grouped-queue's Introduction

Grouped Queue Build Status

In memory queue system prioritizing tasks.

Documentation

Installation

$ npm install --save grouped-queue

Methods

Constructor

The constructor takes an optional array of task groups. The first String name will be the first queue to be emptied, the second string will be the second group emptied, etc.

By default, the constructor will always add a default queue in the last position. You can overwrite the position of the default group if you specify it explicitly.

var Queue = require('grouped-queue');

var queue = new Queue([ 'first', 'second', 'third' ]);

Queue#add add( [group], task, [options] )

Add a task into a group queue. If no group name is specified, default will be used.

Implicitly, each time you add a task, the queue will start emptying (if not already running).

Each task function is passed a callback function. This callback must be called when the task is complete.

queue.add(function( cb ) {
  DB.fetch().then( cb );
});

Option: once

You can register tasks in queues that will be dropped if they're already planned. This is done with the once option. You pass a String (basically a name) to the once option.

// This one will eventually run
queue.add( method, { once: "readDB" });

// This one will be dropped as `method` is currently in the queue
queue.add( method3, { once: "readDB" });

Option: run

You can register a task without launching the run loop by passing the argument run: false.

queue.add( method, { run: false });

Pro tip

Bind your tasks with context and arguments!

var task = function( models, cb ) {
  /* you get `models` data here! */
};
queue.add( task.bind(null, models) );

That's all?

Yes!

Events

end

This event is called each time the queue emptied itself.

Contributing

Style Guide: Please base yourself on Idiomatic.js style guide with two space indent
Unit test: Unit tests are written in Mocha. Please add a unit test for every new feature or bug fix. npm test to run the test suite.
Documentation: Add documentation for every API change. Feel free to send corrections or better docs!
Pull Requests: Send fixes PR on the master branch.

License

Copyright (c) 2013 Simon Boudrias (twitter: @vaxilart)
Licensed under the MIT license.

grouped-queue's People

Contributors

sboudrias avatar doowb avatar sindresorhus avatar oatkiller avatar

Watchers

Navid Nikpour avatar James Cloos avatar  avatar

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.