chore: migrate to eslint 9
[poolifier.git] / tests / worker-files / thread / testWorker.mjs
... / ...
CommitLineData
1import { KillBehaviors, ThreadWorker } from '../../../lib/index.cjs'
2import { TaskFunctions } from '../../test-types.cjs'
3import { executeTaskFunction } from '../../test-utils.cjs'
4
5/**
6 *
7 * @param data
8 * @returns
9 */
10function test (data) {
11 data = data || {}
12 data.function = data.function || TaskFunctions.jsonIntegerSerialization
13 return executeTaskFunction(data)
14}
15
16export default new ThreadWorker(test, {
17 killBehavior: KillBehaviors.HARD,
18 maxInactiveTime: 500,
19})