X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FfixedExample.js;h=3f103ca5523f85441fc864172f24f7f142cca477;hb=dab8c377b70fc962ec217f2aeb719842f9f94cd6;hp=d10c206281fe03af8b6c1e4e08399e50ff5a59b4;hpb=aee467366d8c393b79e7af82c6a7ab12338ee64e;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index d10c2062..3f103ca5 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -7,7 +7,7 @@ const pool = new FixedThreadPool(15, './yourWorker.js', { }) 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,7 +15,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)) return console.log('The pool was busy for ' + poolBusy + ' times') } return null