repositories
/
poolifier.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
docs: refine changelog entries
[poolifier.git]
/
tests
/
worker-files
/
cluster
/
emptyWorker.cjs
1
'use strict'
2
const { ClusterWorker, KillBehaviors } = require('../../../lib/index.cjs')
3
4
function test () {}
5
6
module.exports = new ClusterWorker(test, {
7
killBehavior: KillBehaviors.HARD,
8
maxInactiveTime: 500
9
})