1 Star 0 Fork 4

XDW1993/nodejs

forked from 姿势喵/nodejs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
thread.js 356 Bytes
一键复制 编辑 原始数据 按行查看 历史
姿势喵 提交于 2020-03-07 14:23 . 多线程例子
let thread = require('./modules/thread');
let work = thread.runWorker("./thread_work.js", 1, data=>{
console.log("main recv: "+data);
}, err=>{
console.log(err);
});
let work2 = thread.runWorker("./thread_work.js", 2, data=>{
console.log("main recv: "+data);
});
work.postMessage(10);
work.close();
work.postMessage(99);
work2.postMessage(11);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xdw1993/nodejs.git
git@gitee.com:xdw1993/nodejs.git
xdw1993
nodejs
nodejs
master

搜索帮助