X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Finternal%2Fthread-worker.mjs;h=232881b52e77dfbe1669f0d27fe62f059206a8a6;hb=ecde6ea8c439bbdd9dc2ca118731b5006a1a9884;hp=5c6a691e47af247dde38a075a3cd4c78cc15d02c;hpb=440042a64e5beb9e3e97f513198f4bd2d4a896a6;p=poolifier.git diff --git a/benchmarks/internal/thread-worker.mjs b/benchmarks/internal/thread-worker.mjs index 5c6a691e..232881b5 100644 --- a/benchmarks/internal/thread-worker.mjs +++ b/benchmarks/internal/thread-worker.mjs @@ -1,11 +1,12 @@ 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 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) data.debug === true &&