Improvements based on https://github.com/pioardi/poolifier/issues/6
[poolifier.git] / examples / multifunctionWorker.js
CommitLineData
106744f7 1'use strict'
2const { ThreadWorker } = require('../lib/workers')
3
4function yourFunction (data) {
5 if (data.fname === 'fn0') {
6 console.log('Executing function 0')
7 return { data: '0 your input was' + data.input }
8 } else if (data.fname === 'fn1') {
9 console.log('Executing function 1')
10 return { data: '1 your input was' + data.input }
11 }
12}
13
1f9a5a44 14module.exports = new ThreadWorker(yourFunction)