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