Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-cluster...
[poolifier.git] / tests / worker-files / thread / emptyWorker.mjs
1 import { KillBehaviors, ThreadWorker } from '../../../lib/index.js'
2
3 /**
4 *
5 */
6 function test () {}
7
8 export default new ThreadWorker(test, {
9 killBehavior: KillBehaviors.HARD,
10 maxInactiveTime: 500
11 })