Cleanups
[poolifier.git] / tests / worker-files / cluster / emptyWorker.js
1 'use strict'
2 const { ClusterWorker, KillBehaviors } = require('../../../lib/index')
3
4 function test () {}
5
6 module.exports = new ClusterWorker(test, {
7 maxInactiveTime: 500,
8 killBehavior: KillBehaviors.HARD
9 })