X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=d16fe9469287cde778ae05a224700a6b8330986a;hb=af64732b38dfd3b66eeabf9d9a27d1b47319f58b;hp=1a4cf8234ea3e2de65fc48c2264b7cb799d50771;hpb=8351c9af7882ec098ee29aaa7982f5d030cf0034;p=poolifier.git diff --git a/README.md b/README.md index 1a4cf823..d16fe946 100644 --- a/README.md +++ b/README.md @@ -117,15 +117,21 @@ Instantiate your pool based on your needs : const { DynamicThreadPool, FixedThreadPool, PoolEvents } = require('poolifier') // a fixed worker-threads pool -const pool = new FixedThreadPool(15, './yourWorker.js', { errorHandler: e => console.error(e), onlineHandler: () => console.log('worker is online') }) +const pool = new FixedThreadPool(15, './yourWorker.js', { + errorHandler: e => console.error(e), + onlineHandler: () => console.info('worker is online') +}) -pool.emitter.on(PoolEvents.busy, () => console.log('Pool is busy')) +pool.emitter.on(PoolEvents.busy, () => console.info('Pool is busy')) // or a dynamic worker-threads pool -const pool = new DynamicThreadPool(10, 100, './yourWorker.js', { errorHandler: e => console.error(e), onlineHandler: () => console.log('worker is online') }) +const pool = new DynamicThreadPool(10, 100, './yourWorker.js', { + errorHandler: e => console.error(e), + onlineHandler: () => console.info('worker is online') +}) -pool.emitter.on(PoolEvents.full, () => console.log('Pool is full')) -pool.emitter.on(PoolEvents.busy, () => console.log('Pool is busy')) +pool.emitter.on(PoolEvents.full, () => console.info('Pool is full')) +pool.emitter.on(PoolEvents.busy, () => console.info('Pool is busy')) // the execute method signature is the same for both implementations, // so you can easy switch from one to another