Giter VIP home page Giter VIP logo

js-promise-race-condition-queue's Introduction

Race Condition solution for JavaScript

// task type {fun,input, callback}
// fun is a promise 
// input is the promise input when it called
// callback when the promise ended, it take err, data as response 
this.tasks = [] ;
this.runningCount = 0;
const MAX_RUNS = 3;

let nextTask = () => {
    // if there is no more task or there is task already running return 
    if (this.tasks.length === 0 || this.runningCount >= MAX_RUNS) {
        return;
    }

    // slice first task to run it
    let task = this.tasks.shift();

    // run first task
    this.runningCount++ ;
    console.log(`Tasks runningCount = ${this.runningCount} `)


    let {fun,input, callback} = task  ;

    // call the promise, 
    // when promise finish call next task and return current task error or data in the callback
    fun(input)
        .then((d)=>{
            this.runningCount-- ;
            nextTask();
            // set error with null ; 
            callback(null,d)
        })
        .catch((e)=>{
            this.runningCount-- ;
            nextTask();
            callback(e,null)
        });

}

let addTask = (fun,input, callback) => {
    let task = {fun,input, callback};
    this.tasks.push(task);
    // if there is no task running run new one 
    if(this.tasks.length <= MAX_RUNS && this.runningCount <= MAX_RUNS){
        nextTask();
    }
};


module.exports = {
    addTask
}

    ```

js-promise-race-condition-queue's People

Contributors

almgwary 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.