refactor: add PoolEvents/PoolEvent types
[poolifier.git] / examples / fixedExample.js
index c6ea884897191956ddf2491608bfac175e2c923c..d10c206281fe03af8b6c1e4e08399e50ff5a59b4 100644 (file)
@@ -1,11 +1,11 @@
-const { FixedThreadPool } = require('poolifier')
+const { FixedThreadPool, PoolEvents } = require('poolifier')
 let resolved = 0
 let poolBusy = 0
 const pool = new FixedThreadPool(15, './yourWorker.js', {
   errorHandler: e => console.error(e),
   onlineHandler: () => console.log('worker is online')
 })
-pool.emitter.on('busy', () => poolBusy++)
+pool.emitter.on(PoolEvents.busy, () => poolBusy++)
 
 const start = Date.now()
 const iterations = 1000