Commit | Line | Data |
---|---|---|
106744f7 | 1 | 'use strict' |
106744f7 | 2 | const { isMainThread } = require('worker_threads') |
65d7a1c9 | 3 | const { ThreadWorker, KillBehaviors } = require('../../../lib') |
cf597bc5 | 4 | const TestUtils = require('../../test-utils') |
2d2e32c2 | 5 | const { WorkerFunctions } = require('../../test-types') |
106744f7 | 6 | |
7 | function test (data) { | |
6db75ad9 JB |
8 | data = data || {} |
9 | data.function = data.function || WorkerFunctions.jsonIntegerSerialization | |
10 | TestUtils.executeWorkerFunction(data) | |
106744f7 | 11 | return isMainThread |
12 | } | |
13 | ||
4c35177b | 14 | module.exports = new ThreadWorker(test, { |
15 | maxInactiveTime: 500, | |
1a81f8af | 16 | killBehavior: KillBehaviors.HARD |
4c35177b | 17 | }) |