X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FfixedExample.js;h=2346f7b4f0b68b207ced0df9ffd86f125e36a1e5;hb=refs%2Ftags%2Fv2.6.9;hp=2c36a7038695e4e4a8a10dae15bc0f748a4b3849;hpb=7a6a0a967f5d0978d7ad0714616194fe7592f69a;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index 2c36a703..2346f7b4 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -1,11 +1,18 @@ -const { FixedThreadPool } = require('poolifier') -let resolved = 0 -const pool = new FixedThreadPool(15, './yourWorker.js', { +const { + FixedThreadPool, + PoolEvents, + availableParallelism +} = require('poolifier') + +const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', { errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + onlineHandler: () => console.info('worker is online') }) +let poolBusy = 0 +pool.emitter.on(PoolEvents.busy, () => poolBusy++) -const start = Date.now() +let resolved = 0 +const start = performance.now() const iterations = 1000 for (let i = 1; i <= iterations; i++) { pool @@ -13,7 +20,8 @@ for (let i = 1; i <= iterations; i++) { .then(() => { resolved++ if (resolved === iterations) { - return console.log('Time take is ' + (Date.now() - start)) + console.info('Time taken is ' + (performance.now() - start)) + return console.info('The pool was busy for ' + poolBusy + ' times') } return null })