refactor: cleanup internal pool messaging code
[poolifier.git] / tests / worker-files / thread / longRunningWorkerSoftBehavior.js
CommitLineData
c01733f1 1'use strict'
cdace0e5 2const { ThreadWorker } = require('../../../lib')
cf597bc5 3const TestUtils = require('../../test-utils')
c01733f1 4
5async function sleep (data) {
6db75ad9 6 return TestUtils.sleepWorkerFunction(data, 50000)
c01733f1 7}
8
4c35177b 9module.exports = new ThreadWorker(sleep, {
6677a3d3 10 maxInactiveTime: 500
4c35177b 11})