build(deps-dev): bump rollup
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index 4e3c10500e0edc8fde098d49fc633d585336fc0a..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 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.jsonIntegerSerialization
+  const res = executeTaskFunction(data)
+  debug === true && console.debug(`This is the main thread ${isMainThread}`)
+  return res
 }
 
-export default new ThreadWorker(yourFunction)
+export default new ThreadWorker(taskFunction)