crcn / tq.js

tiny queue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

TQ is a flexible, tiny queue library for node.js

Example

var queue = require("tq").create().start();

Another variation

var queue = require('tq').queue();


[
	function() {
		this();
	},
	function() {
		this()
	},
	function() {
		this();
	}
].forEach(queue.push);

queue.start();

Api

queue.push

pushes a queue to the end

queue.unshift

pushes a queue to the beginning (next up)

queue.now(callback)

queue.then(callback)

callback queue.wait()

queue.start

starts a queue

queue.stop

stops a queue

About

tiny queue


Languages

Language:JavaScript 100.0%