refactor: cleanup examples
[poolifier.git] / examples / fixedExample.js
index c6ea884897191956ddf2491608bfac175e2c923c..1f5ac4ea4e19f52ec474de4c12c6ed314f78704e 100644 (file)
@@ -1,22 +1,31 @@
-const { FixedThreadPool } = require('poolifier')
-let resolved = 0
-let poolBusy = 0
-const pool = new FixedThreadPool(15, './yourWorker.js', {
+'use strict'
+const {
+  FixedThreadPool,
+  PoolEvents,
+  availableParallelism
+} = require('poolifier')
+
+const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', {
   errorHandler: e => console.error(e),
-  onlineHandler: () => console.log('worker is online')
+  onlineHandler: () => console.info('worker is online')
 })
-pool.emitter.on('busy', () => poolBusy++)
+let poolReady = 0
+let poolBusy = 0
+pool.emitter.on(PoolEvents.ready, () => poolReady++)
+pool.emitter.on(PoolEvents.busy, () => poolBusy++)
 
-const start = Date.now()
+let resolved = 0
+const start = performance.now()
 const iterations = 1000
 for (let i = 1; i <= iterations; i++) {
   pool
-    .execute({})
+    .execute()
     .then(() => {
       resolved++
       if (resolved === iterations) {
-        console.log('Time taken is ' + (Date.now() - start))
-        return console.log('The pool was busy for ' + poolBusy + ' times')
+        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')
       }
       return null
     })