Change killBehaviorEnumeration to killBehaviorTypes
[poolifier.git] / tests / worker / thread / echoWorker.js
CommitLineData
106744f7 1'use strict'
e8ea58d2 2const { ThreadWorker, killBehaviorTypes } = require('../../../lib/index')
106744f7 3
4function echo (data) {
5 return data
6}
7
4c35177b 8module.exports = new ThreadWorker(echo, {
9 maxInactiveTime: 500,
e8ea58d2 10 killBehavior: killBehaviorTypes.HARD
4c35177b 11})