feat: add 'full' event on dynamic pool emitter
[poolifier.git] / examples / fixedExample.js
CommitLineData
60fbd6d6 1const { FixedThreadPool } = require('poolifier')
c2dbbe2b 2let resolved = 0
164d950a 3let poolBusy = 0
cf9aa6c3 4const pool = new FixedThreadPool(15, './yourWorker.js', {
5 errorHandler: e => console.error(e),
6 onlineHandler: () => console.log('worker is online')
7})
164d950a 8pool.emitter.on('busy', () => poolBusy++)
3e460d6d 9
27006a3d 10const start = Date.now()
bf962cba 11const iterations = 1000
292ad316 12for (let i = 1; i <= iterations; i++) {
583a27ce
JB
13 pool
14 .execute({})
7a6a0a96 15 .then(() => {
583a27ce
JB
16 resolved++
17 if (resolved === iterations) {
164d950a
JB
18 console.log('Time taken is ' + (Date.now() - start))
19 return console.log('The pool was busy for ' + poolBusy + ' times')
583a27ce
JB
20 }
21 return null
22 })
23 .catch(err => console.error(err))
6dc67cda 24}