X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fcluster-worker.ts;h=05fe25343acc736f53085947e551e3869486bf5f;hb=4302d959ff7e8eb6f6bfcecf1e911fc627e98a9c;hp=c43e7f75a7586d2b2a9fa6633eea7da6e44697bf;hpb=985d0e7986b2cad23bb08ae0561b2a6ff9afdf9e;p=poolifier.git diff --git a/src/worker/cluster-worker.ts b/src/worker/cluster-worker.ts index c43e7f75..05fe2534 100644 --- a/src/worker/cluster-worker.ts +++ b/src/worker/cluster-worker.ts @@ -1,8 +1,8 @@ import cluster, { type Worker } from 'node:cluster' -import type { MessageValue } from '../utility-types' -import { AbstractWorker } from './abstract-worker' -import type { WorkerOptions } from './worker-options' -import type { TaskFunctions, WorkerFunction } from './worker-functions' +import type { MessageValue } from '../utility-types.js' +import { AbstractWorker } from './abstract-worker.js' +import type { WorkerOptions } from './worker-options.js' +import type { TaskFunction, TaskFunctions } from './task-functions.js' /** * A cluster worker used by a poolifier `ClusterPool`. @@ -29,18 +29,29 @@ export class ClusterWorker< * @param opts - Options for the worker. */ public constructor ( - taskFunctions: - | WorkerFunction - | TaskFunctions, + taskFunctions: TaskFunction | TaskFunctions, opts: WorkerOptions = {} ) { - super( - 'worker-cluster-pool:poolifier', - cluster.isPrimary, - taskFunctions, - cluster.worker as Worker, - opts - ) + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + super(cluster.isPrimary, cluster.worker!, taskFunctions, opts) + } + + /** @inheritDoc */ + protected handleReadyMessage (message: MessageValue): void { + if (message.workerId === this.id && message.ready === false) { + try { + this.getMainWorker().on('message', this.messageListener.bind(this)) + this.sendToMainWorker({ + ready: true, + taskFunctionNames: this.listTaskFunctionNames() + }) + } catch { + this.sendToMainWorker({ + ready: false, + taskFunctionNames: this.listTaskFunctionNames() + }) + } + } } /** @inheritDoc */ @@ -49,7 +60,9 @@ export class ClusterWorker< } /** @inheritDoc */ - protected sendToMainWorker (message: MessageValue): void { - this.getMainWorker().send(message) + protected readonly sendToMainWorker = ( + message: MessageValue + ): void => { + this.getMainWorker().send({ ...message, workerId: this.id }) } }