X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=1b7391d759b01c7d6a41dbc0a953bfc33e5f2c8b;hb=14a2e530e555fa52f98454e182d0094e0ff5d86f;hp=79f73c11c53b0f296cd077ecca35fc53a18cab1c;hpb=164d950a1bcdc39b4762294c1581e8befbb344e2;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 79f73c11..1b7391d7 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -1,4 +1,4 @@ -const { DynamicThreadPool } = require('poolifier') +const { DynamicThreadPool, PoolEvents } = require('poolifier') let resolved = 0 let poolFull = 0 let poolBusy = 0 @@ -6,10 +6,10 @@ const pool = new DynamicThreadPool(10, 20, './yourWorker.js', { errorHandler: e => console.error(e), onlineHandler: () => console.log('worker is online') }) -pool.emitter.on('full', () => poolFull++) -pool.emitter.on('busy', () => poolBusy++) +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') }