X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FfixedExample.js;fp=examples%2FfixedExample.js;h=d10c206281fe03af8b6c1e4e08399e50ff5a59b4;hb=aee467366d8c393b79e7af82c6a7ab12338ee64e;hp=c6ea884897191956ddf2491608bfac175e2c923c;hpb=36b5e78f5d0a98040273f48b409e643fe5902913;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index c6ea8848..d10c2062 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -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