Add benchmark script (#104)
[poolifier.git] / examples / staticExample.js
CommitLineData
60fbd6d6 1const { FixedThreadPool } = require('poolifier')
c2dbbe2b 2let resolved = 0
cf9aa6c3 3const pool = new FixedThreadPool(15, './yourWorker.js', {
4 errorHandler: e => console.error(e),
5 onlineHandler: () => console.log('worker is online')
6})
3e460d6d 7
27006a3d 8const start = Date.now()
bf962cba 9const iterations = 1000
c2dbbe2b 10for (let i = 0; i <= iterations; i++) {
583a27ce
JB
11 pool
12 .execute({})
13 .then(res => {
14 resolved++
15 if (resolved === iterations) {
16 return console.log('Time take is ' + (Date.now() - start))
17 }
18 return null
19 })
20 .catch(err => console.error(err))
6dc67cda 21}