refactor: renable standard JS linter rules
[poolifier.git] / src / worker / cluster-worker.ts
index 201a516c56e1d8ab2a3d2d569c4d54d7f0fd484d..05fe25343acc736f53085947e551e3869486bf5f 100644 (file)
@@ -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 { TaskFunction, TaskFunctions } from './task-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`.
@@ -32,13 +32,8 @@ export class ClusterWorker<
     taskFunctions: TaskFunction<Data, Response> | TaskFunctions<Data, Response>,
     opts: WorkerOptions = {}
   ) {
-    super(
-      'worker-cluster-pool:poolifier',
-      cluster.isPrimary,
-      cluster.worker as Worker,
-      taskFunctions,
-      opts
-    )
+    // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
+    super(cluster.isPrimary, cluster.worker!, taskFunctions, opts)
   }
 
   /** @inheritDoc */
@@ -65,7 +60,9 @@ export class ClusterWorker<
   }
 
   /** @inheritDoc */
-  protected sendToMainWorker (message: MessageValue<Response>): void {
+  protected readonly sendToMainWorker = (
+    message: MessageValue<Response>
+  ): void => {
     this.getMainWorker().send({ ...message, workerId: this.id })
   }
 }