5af97b0734e6da16643b763a785d4069e6f48522
[poolifier.git] / tests / worker-files / thread / asyncWorker.js
1 'use strict'
2 const { ThreadWorker, KillBehaviors } = require('../../../lib')
3 const TestUtils = require('../../test-utils')
4
5 async function sleep (data) {
6 return TestUtils.sleepWorkerFunction(data, 2000)
7 }
8
9 module.exports = new ThreadWorker(sleep, {
10 maxInactiveTime: 500,
11 async: true,
12 killBehavior: KillBehaviors.HARD
13 })