X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FfixedExample.js;h=478c37eb056229360dbdbabcf61ab13e7f058e74;hb=aecc6e48d609dc8a988774d18ff0f2e49e3be981;hp=c6ea884897191956ddf2491608bfac175e2c923c;hpb=164d950a1bcdc39b4762294c1581e8befbb344e2;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index c6ea8848..478c37eb 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -1,13 +1,13 @@ -const { FixedThreadPool } = require('poolifier') +const { FixedThreadPool, PoolEvents } = require('poolifier') let resolved = 0 let poolBusy = 0 const pool = new FixedThreadPool(15, './yourWorker.js', { errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + onlineHandler: () => console.info('worker is online') }) -pool.emitter.on('busy', () => poolBusy++) +pool.emitter.on(PoolEvents.busy, () => poolBusy++) -const start = Date.now() +const start = performance.now() const iterations = 1000 for (let i = 1; i <= iterations; i++) { pool @@ -15,8 +15,8 @@ for (let i = 1; i <= iterations; i++) { .then(() => { resolved++ if (resolved === iterations) { - console.log('Time taken is ' + (Date.now() - start)) - return console.log('The pool was busy for ' + poolBusy + ' times') + console.info('Time taken is ' + (performance.now() - start)) + return console.info('The pool was busy for ' + poolBusy + ' times') } return null })