Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-hybrid...
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index 869e95f4ba6b070228800b9db00fa93e073b4e6d..232881b52e77dfbe1669f0d27fe62f059206a8a6 100644 (file)
@@ -1,15 +1,16 @@
-import { isMainThread } from 'worker_threads'
+import { isMainThread } from 'node:worker_threads'
+
 import { ThreadWorker } from '../../lib/index.mjs'
+import { TaskFunctions } from '../benchmarks-types.cjs'
 import { executeTaskFunction } from '../benchmarks-utils.mjs'
-import { TaskFunctions } from '../benchmarks-types.mjs'
-
-const debug = false
 
 const taskFunction = data => {
   data = data || {}
-  data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  data.function = data.function || TaskFunctions.factorial
+  data.debug = data.debug || false
   const res = executeTaskFunction(data)
-  debug === true && console.debug('This is the main thread ' + isMainThread)
+  data.debug === true &&
+    console.debug(`This is the main thread ${isMainThread}`)
   return res
 }