andywer / andywer/threads.js

Node 14.5 - process does not exit after all Threads terminated

オープン
#345 コメント 0 件 リアクション 0 件 担当者 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 を短くまとめたダイジェスト。