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
/
longRunningWorkerSoftBehavior.cjs
1
'use strict'
2
const { ClusterWorker } = require('../../../lib/index.cjs')
3
const { sleepTaskFunction } = require('../../test-utils.cjs')
4
5
async function sleep (data) {
6
return sleepTaskFunction(data, 50000)
7
}
8
9
module.exports = new ClusterWorker(sleep, {
10
maxInactiveTime: 500
11
})