会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
远方的少年🐬
做正确的事,正确的做事,快乐的做事
博客园
首页
新随笔
管理
2022年2月21日
手写 Promise 队列
摘要: 支持限制并发数 class PromiseQueue { limit: number active: number queue: Array<() => Promise<any>> constructor(limit = 3) { // 并发限制 this.limit = limit; // 当前活
阅读全文
posted @ 2022-02-21 15:45 远方的少年🐬
阅读(83)
评论(0)
推荐(0)
编辑