X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fthread-worker.ts;h=8d30ef21a8874dcfb6802e2436a7d6033a4fa8ec;hb=8a7983a0862fe0b647c4f3c5a6b05155d4ce8c31;hp=6f36664b8ae1a56cebb5058d7d4c56885b5ae88f;hpb=f05ed93ccebb3ea4212d015788bcd6ca9e0b38d2;p=poolifier.git diff --git a/src/worker/thread-worker.ts b/src/worker/thread-worker.ts index 6f36664b..8d30ef21 100644 --- a/src/worker/thread-worker.ts +++ b/src/worker/thread-worker.ts @@ -60,10 +60,17 @@ export class ThreadWorker< try { this.port = message.port this.port.on('message', this.messageListener.bind(this)) - this.sendTaskFunctionsListToMainWorker() - this.sendToMainWorker({ ready: true, workerId: this.id }) + this.sendToMainWorker({ + ready: true, + taskFunctions: this.listTaskFunctions(), + workerId: this.id + }) } catch { - this.sendToMainWorker({ ready: false, workerId: this.id }) + this.sendToMainWorker({ + ready: false, + taskFunctions: this.listTaskFunctions(), + workerId: this.id + }) } } }