X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=ad79ba20294135dfc4569f1795151ae24f8ea3fc;hb=23a6c28d3cc6edb778653a4d9d9a4d36f9a961c3;hp=6af045601025e3edac7c95a0b670b85b9c37f1f3;hpb=6961ca9a305bb2049105e6710a53a4f5f7970cb6;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 6af04560..ad79ba20 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -1,3 +1,4 @@ +'use strict' const { DynamicThreadPool, PoolEvents, @@ -5,7 +6,7 @@ const { } = require('poolifier') const pool = new DynamicThreadPool( - availableParallelism() / 2, + Math.floor(availableParallelism() / 2), availableParallelism(), './yourWorker.js', { @@ -14,8 +15,10 @@ const pool = new DynamicThreadPool( } ) let poolFull = 0 +let poolReady = 0 let poolBusy = 0 pool.emitter.on(PoolEvents.full, () => poolFull++) +pool.emitter.on(PoolEvents.ready, () => poolReady++) pool.emitter.on(PoolEvents.busy, () => poolBusy++) let resolved = 0 @@ -23,12 +26,13 @@ const start = performance.now() const iterations = 1000 for (let i = 1; i <= iterations; i++) { pool - .execute({}) + .execute() .then(() => { resolved++ if (resolved === iterations) { console.info('Time taken is ' + (performance.now() - start)) console.info('The pool was full for ' + poolFull + ' times') + console.info('The pool was ready for ' + poolReady + ' times') return console.info('The pool was busy for ' + poolBusy + ' times') } return null