Merge dependabot/npm_and_yarn/examples/typescript/http-server-pool/fastify-hybrid...
[poolifier.git] / tests / worker-files / thread / longRunningWorkerHardBehavior.mjs
... / ...
CommitLineData
1import { KillBehaviors, ThreadWorker } from '../../../lib/index.cjs'
2import { sleepTaskFunction } from '../../test-utils.cjs'
3
4/**
5 *
6 * @param data
7 * @returns
8 */
9async function sleep (data) {
10 return sleepTaskFunction(data, 50000)
11}
12
13export default new ThreadWorker(sleep, {
14 killBehavior: KillBehaviors.HARD,
15 maxInactiveTime: 500
16})