X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=1b7391d759b01c7d6a41dbc0a953bfc33e5f2c8b;hb=dab8c377b70fc962ec217f2aeb719842f9f94cd6;hp=e1d9b5035c1e1f45e1be29cc2f9b20c184f4c2f1;hpb=aee467366d8c393b79e7af82c6a7ab12338ee64e;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index e1d9b503..1b7391d7 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -9,7 +9,7 @@ const pool = new DynamicThreadPool(10, 20, './yourWorker.js', { pool.emitter.on(PoolEvents.full, () => poolFull++) 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 @@ -17,7 +17,7 @@ for (let i = 1; i <= iterations; i++) { .then(() => { resolved++ if (resolved === iterations) { - console.log('Time taken is ' + (Date.now() - start)) + console.log('Time taken is ' + (performance.now() - start)) console.log('The pool was full for ' + poolFull + ' times') return console.log('The pool was busy for ' + poolBusy + ' times') }