Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-hybrid...
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index 4e3c10500e0edc8fde098d49fc633d585336fc0a..232881b52e77dfbe1669f0d27fe62f059206a8a6 100644 (file)
@@ -1,16 +1,17 @@
-import { isMainThread } from 'worker_threads'
-import { ThreadWorker } from '../../lib/index.mjs'
-import { executeWorkerFunction } from '../benchmarks-utils.mjs'
-import { WorkerFunctions } from '../benchmarks-types.mjs'
+import { isMainThread } from 'node:worker_threads'
 
-const debug = false
+import { ThreadWorker } from '../../lib/index.mjs'
+import { TaskFunctions } from '../benchmarks-types.cjs'
+import { executeTaskFunction } from '../benchmarks-utils.mjs'
 
-function yourFunction (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.factorial
+  data.debug = data.debug || false
+  const res = executeTaskFunction(data)
+  data.debug === true &&
+    console.debug(`This is the main thread ${isMainThread}`)
+  return res
 }
 
-export default new ThreadWorker(yourFunction)
+export default new ThreadWorker(taskFunction)