Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-worker_thr...
[poolifier.git] / tests / worker-files / thread / emptyWorker.js
1 'use strict'
2 const { ThreadWorker, KillBehaviors } = require('../../../lib')
3
4 function test () {}
5
6 module.exports = new ThreadWorker(test, {
7 killBehavior: KillBehaviors.HARD,
8 maxInactiveTime: 500
9 })