Provide a cluster worker pool (#92)
[poolifier.git] / tests / worker / cluster / emptyWorker.js
CommitLineData
325f50bc
S
1'use strict'
2const { ClusterWorker } = require('../../../lib/index')
3
4function test (data) {}
5
6module.exports = new ClusterWorker(test, { maxInactiveTime: 500 })