Code Monkey home page Code Monkey logo

blog's People

Contributors

wanghao1993 avatar

Watchers

 avatar

Forkers

enterpriseih

blog's Issues

实现一个带并发限制的异步调度器 Scheduler,保证同时运行的任务最多有两个。完善下面代码中的 Scheduler 类,使得以下程序能正确输出。

class Scheduler {
  constructor() {
    this.queue = []; // 存储任务的队列
    this.maxConcurrent = 2; // 最大并发数
    this.runningCount = 0; // 当前正在运行的任务数
  }

  add(promiseCreator) {
    return new Promise((resolve, reject) => {
      // 将任务添加到队列中
      this.queue.push({ promiseCreator, resolve, reject });
      // 如果当前正在运行的任务数小于最大并发数,则执行任务
      if (this.runningCount < this.maxConcurrent) {
        this.runTask();
      }
    });
  }

  runTask() {
    if (this.queue.length === 0) return; // 队列为空,直接返回

    const { promiseCreator, resolve, reject } = this.queue.shift();
    this.runningCount++; // 当前正在运行的任务数加一

    promiseCreator()
      .then(resolve)
      .catch(reject)
      .finally(() => {
        this.runningCount--; // 当前正在运行的任务数减一
        this.runTask(); // 继续执行下一个任务
      });
  }
}

const timeout = (time) => new Promise((resolve) => setTimeout(resolve, time));

const scheduler = new Scheduler();

const addTask = (time, order) => {
  scheduler.add(() => timeout(time)).then(() => console.log(order));
};

addTask(1000, "1");
addTask(500, "2");
addTask(300, "3");
addTask(400, "4");

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.