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