Merge dependabot/npm_and_yarn/examples/typescript/websocket-server-pool/ws-hybrid...
[poolifier.git] / examples / javascript / fixedExample.js
index 1f5ac4ea4e19f52ec474de4c12c6ed314f78704e..55ed724d1e7e5bc4f0e204b5722cf480c1b5cad5 100644 (file)
@@ -11,8 +11,8 @@ const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', {
 })
 let poolReady = 0
 let poolBusy = 0
-pool.emitter.on(PoolEvents.ready, () => poolReady++)
-pool.emitter.on(PoolEvents.busy, () => poolBusy++)
+pool.emitter?.on(PoolEvents.ready, () => poolReady++)
+pool.emitter?.on(PoolEvents.busy, () => poolBusy++)
 
 let resolved = 0
 const start = performance.now()
@@ -23,11 +23,14 @@ for (let i = 1; i <= iterations; i++) {
     .then(() => {
       resolved++
       if (resolved === iterations) {
-        console.info('Time taken is ' + (performance.now() - start))
-        console.info('The pool was ready for ' + poolReady + ' times')
-        return console.info('The pool was busy for ' + poolBusy + ' times')
+        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 null
+      return undefined
     })
     .catch(err => console.error(err))
 }