X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Fjavascript%2FfixedExample.js;fp=examples%2Fjavascript%2FfixedExample.js;h=0000000000000000000000000000000000000000;hb=d35e571704515a8b729d3455e4784054f07c368f;hp=55ed724d1e7e5bc4f0e204b5722cf480c1b5cad5;hpb=7b7d96315331635fa3c8a12b03b6893fe91bf8ec;p=poolifier.git diff --git a/examples/javascript/fixedExample.js b/examples/javascript/fixedExample.js deleted file mode 100644 index 55ed724d..00000000 --- a/examples/javascript/fixedExample.js +++ /dev/null @@ -1,36 +0,0 @@ -'use strict' -const { - FixedThreadPool, - PoolEvents, - availableParallelism -} = require('poolifier') - -const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', { - errorHandler: e => console.error(e), - onlineHandler: () => console.info('worker is online') -}) -let poolReady = 0 -let poolBusy = 0 -pool.emitter?.on(PoolEvents.ready, () => poolReady++) -pool.emitter?.on(PoolEvents.busy, () => poolBusy++) - -let resolved = 0 -const start = performance.now() -const iterations = 1000 -for (let i = 1; i <= iterations; i++) { - pool - .execute() - .then(() => { - resolved++ - if (resolved === iterations) { - console.info( - `Time taken is ${(performance.now() - start).toFixed(2)}ms` - ) - console.info(`The pool was ready for ${poolReady} times`) - console.info(`The pool was busy for ${poolBusy} times`) - return pool.destroy() - } - return undefined - }) - .catch(err => console.error(err)) -}