refactor: cleanup internal pool messaging code
[poolifier.git] / tests / worker-files / thread / asyncWorker.js
CommitLineData
7784f548 1'use strict'
cdace0e5 2const { ThreadWorker, KillBehaviors } = require('../../../lib')
bdacc2d2 3const TestUtils = require('../../test-utils')
7784f548 4
5async function sleep (data) {
6db75ad9 6 return TestUtils.sleepWorkerFunction(data, 2000)
7784f548 7}
8
4c35177b 9module.exports = new ThreadWorker(sleep, {
10 maxInactiveTime: 500,
1a81f8af 11 killBehavior: KillBehaviors.HARD
4c35177b 12})