build: switch from prettier to rome as code formatter
[poolifier.git] / benchmarks / internal / cluster-worker.mjs
CommitLineData
8a970421
JB
1import { isMaster } from 'cluster'
2import { ClusterWorker } from '../../lib/index.mjs'
dbca3be9
JB
3import { executeTaskFunction } from '../benchmarks-utils.mjs'
4import { TaskFunctions } from '../benchmarks-types.mjs'
57df5469 5
23ff945a
JB
6const debug = false
7
8ebe6c30 8const taskFunction = (data) => {
2d2e32c2 9 data = data || {}
dbca3be9
JB
10 data.function = data.function || TaskFunctions.jsonIntegerSerialization
11 const res = executeTaskFunction(data)
23ff945a 12 debug === true && console.debug('This is the main thread ' + isMaster)
30b963d4 13 return res
106744f7 14}
15
dbca3be9 16export default new ClusterWorker(taskFunction)