Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

queue-promise

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

queue-promise

A simple, dependency-free library for concurrent promise-based queues. Comes with with concurrency and timeout control.

  • 1.3.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13K
decreased by-15.45%
Maintainers
1
Weekly downloads
 
Created
Source

queue-promise

Greenkeeper badge Build Status npm version npm downloads

queue-promise is a small, dependency-free library for promise-based queues. It will resolve enqueued functions concurrently at a given speed. When a task is being resolved or rejected, an event will be emitted.

Installation

$ npm install queue-promise

Usage

import Queue from "queue-promise";

const queue = new Queue({
  // How many tasks should be resolved at a time (defaults to `5`):
  concurrent: 1,
  // How often should new tasks be resolved (in ms – defaults to `500`):
  interval: 2000,
  // If should resolve new tasks automatically when they are added (defaults to `true`):
  start: true
});

queue.on("resolve", data => console.log(data));
queue.on("reject", error => console.error(error));

queue.enqueue(asyncTaskA); // resolved/rejected after 0s
queue.enqueue(asyncTaskB); // resolved/rejected after 2s
queue.enqueue(asyncTaskC); // resolved/rejected after 4s
queue.enqueue(asyncTaskD); // resolved/rejected after 6s

API

new Queue(options)

Create a new Queue instance.

OptionDefaultDescription
concurrent5How many tasks can be handled at the same time
interval500How often should new tasks be handled (in ms)
starttrueWhether we should automatically resolve new tasks as soon as they are added
public .enqueue(tasks)/.add(tasks)

Puts a new task on the stack. A task should be an async function (ES2017) or return a Promise. Throws an error if the provided task is not a valid function.

Example:

async function getRepos(user) {
  return await github.getRepos(user);
}

queue.enqueue(getRepos("userA"));
queue.enqueue(getRepos("userB"));

// …equivalent to:
queue.enqueue([getRepos("userA"), getRepos("userB")]);
public .dequeue()

Manually resolves n concurrent (based od options.concurrent) promises from the queue. Uses global Promises. Is called automatically if options.start is set to true. Emits resolve and reject events.

Example:

queue.enqueue(getRepos("userA"));
queue.enqueue(getRepos("userB"));

// If "concurrent" is set to 1, only one promise is resolved on dequeue:
const userA = await queue.dequeue();
const userB = await queue.dequeue();

// If "concurrent" is set to 2, two promises are resolved concurrently:
const [userA, userB] = await queue.dequeue();
public .on(event, callback)

Sets a callback for an event. You can set callback for those events: start, stop, resolve, reject, end.

Example:

queue.enqueue([…]);

queue.on("resolve", data => …);
queue.on("reject", error => …);
queue.on("end", () => …);
public .start()

Starts the queue – it will automatically dequeue tasks periodically. Emits start event.

queue.enqueue(getRepos("userA"));
queue.enqueue(getRepos("userB"));
queue.enqueue(getRepos("userC"));
queue.enqueue(getRepos("userD"));
queue.start();

// No need to call `dequeue` – you can just listen for events:
queue.on("resolve", data => …);
queue.on("reject", error => …);
public .stop()

Forces the queue to stop. New tasks will not be resolved automatically even if options.start was set to true. Emits stop event.

public .clear()

Removes all tasks from the queue.

public .started

Whether the queue has been started or not.

public .stopped

Whether the queue has been forced to stop.

public .isEmpty

Whether the queue is empty, i.e. there's no tasks.

Tests

$ npm test

Keywords

FAQs

Package last updated on 05 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc