refactor: cleanup eslint configuration
[poolifier.git] / tests / worker-files / thread / testWorker.mjs
CommitLineData
d35e5717 1import { KillBehaviors, ThreadWorker } from '../../../lib/index.cjs'
d35e5717 2import { TaskFunctions } from '../../test-types.cjs'
ded253e2 3import { executeTaskFunction } from '../../test-utils.cjs'
b2fd3f4a
JB
4
5/**
6 *
7 * @param data
2eb14889 8 * @returns
b2fd3f4a
JB
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})