JavaScript 限制并发函数

发布于 2023-05-03 11:50:43 字数 871 浏览 42 评论 0

问题

// countLimit 是一个函数,执行 fn,执行的并发度是 2,返回一个 Promise
let countLimit = pLimit(fn, 2)
countLimit(a) // 立即执行
countLimit(b) // 立即执行
countLimit(c) // 前两个函数执行完再执行

// 求实现函数 pLimit

答案

function pLimit(fn, times) {
    let fns = []

    function executeFns() {
        if (fns.length && times) {
            const f = fns.shift()
            times--
            f().finally(() => {
                times++
                executeFns()
            })
        }
    }

    function inner(...args) {
        fns.push(() => fn.apply(this, args))
        executeFns()
    }
    return inner
}

let countLimit = pLimit(function (times) {
    console.log('test', times)
    return new Promise((resolve) => setTimeout(resolve, times * 1000))
}, 2)

countLimit(2)
countLimit(3)
countLimit(2)
countLimit(3)
countLimit(2)
countLimit(1)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

維他命╮

暂无简介

0 文章
0 评论
25 人气
更多

推荐作者

qq_eQNo9e

文章 0 评论 0

内心旳酸楚

文章 0 评论 0

mb_BlPo2I8v

文章 0 评论 0

alipaysp_ZRaVhH1Dn

文章 0 评论 0

alipaysp_VP2a8Q4rgx

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文