Giter VIP home page Giter VIP logo

promise-pool's Introduction

Promise Pool

Promise-Pool is a JavaScript library for Scheduling requests.

specifying the number of concurrent requests, and reducing the pressure on target services.

Installation

Using npm/yarn:

npm install @tuluffy/promise-pool --save

How to use

test example

const fn1 = () => new Promise((resolve, reject) => {
	setTimeout(() => {
		resolve('fn1...');
	}, 1700);
});

const fn2 = () => new Promise((resolve, reject) => {
	setTimeout(() => {
		reject('reject fn2...');
	}, 1000);
});

const fn3 = () => new Promise((resolve, reject) => {
	setTimeout(() => {
		resolve('fn3...');
	}, 800);
});

const fn4 = () => new Promise((resolve, reject) => {
	setTimeout(() => {
		reject('reject fn4...');
	}, 500);
});

use in project

import promisePool from '@tuluffy/promise-pool';

/* (Optional) Process response */
const callback = data => {
	console.log(data);
};

/* The number of transactions is limited to:2 */
const dispatch = PromisePool(2, callback);

const fn0 = () => new Promise((resolve, reject) => {
	setTimeout(() => {
		resolve('fn0...');
	}, 600);
});

dispatch(fn0);
dispatch(fn1);
dispatch(fn2);
dispatch(fn3);
dispatch(fn4);

Change Log

1.0.1 (July 16, 2022)

  • adjustment readme;

Follow Up

promise-pool's People

Contributors

tuluffy avatar

Stargazers

aLoNe.Adams.K avatar

Watchers

 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.