andywer / andywer/threads.js

Node 14.5 - process does not exit after all Threads terminated

未关闭
#345 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
TypeScript
星标
3.5k
派生
173
PR 合并指标
30 天内没有已合并 PR

描述

Hi,

I found this library due to good wrapper around worker_threads which makes it easy to work with TS code and I am grateful for this :)

Anyway, I have some strange issue which I'd like to solve:
```typescript
const workers: FunctionThread[] = [];

for (const chunk of chunks) {
const worker = await spawn(new Worker("./coordinatorWorker"));
workers.push(worker);
worker(chunk);
}

await wait(1000);

await Promise.all(workers.map(Thread.terminate));
```

I would expect to process to finish, but it hangs with open handles, however it responds to ctrl+C.

I found 2 issues relating to that, but they were using a wrapper for old Node versions, so it was different.

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。