Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-worker_thr...
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index c1cd01414830aa9eaaa88bd2d7a0a3d0a4854ab4..7af5fa638aed36a25bba7c384d95c8b604eac5ba 100644 (file)
@@ -1,16 +1,16 @@
-import { isMainThread } from 'worker_threads'
+import { isMainThread } from 'node:worker_threads'
 import { ThreadWorker } from '../../lib/index.mjs'
-import { executeWorkerFunction } from '../benchmarks-utils.mjs'
-import { WorkerFunctions } from '../benchmarks-types.mjs'
+import { executeTaskFunction } from '../benchmarks-utils.mjs'
+import { TaskFunctions } from '../benchmarks-types.mjs'
 
 const debug = false
 
-function workerFunction (data) {
+const taskFunction = data => {
   data = data || {}
-  data.function = data.function || WorkerFunctions.jsonIntegerSerialization
-  executeWorkerFunction(data)
-  debug === true && console.debug('This is the main thread ' + isMainThread)
-  return { ok: 1 }
+  data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  const res = executeTaskFunction(data)
+  debug === true && console.debug(`This is the main thread ${isMainThread}`)
+  return res
 }
 
-export default new ThreadWorker(workerFunction)
+export default new ThreadWorker(taskFunction)