X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2FmultiFunctionExample.js;h=213736ea037899024da9e9aab20213ebf518de40;hb=5e9adc846d955e40ff53431fc1bdf2005b69350e;hp=8b27f84154bcbb97b52cbee49f4074034aa0d04c;hpb=a3c8691eb5bd772a43746fd5860d54a786463039;p=poolifier.git diff --git a/examples/multiFunctionExample.js b/examples/multiFunctionExample.js index 8b27f841..213736ea 100644 --- a/examples/multiFunctionExample.js +++ b/examples/multiFunctionExample.js @@ -1,9 +1,16 @@ -const FixedThreadPool = require('../lib/fixed') -const pool = new FixedThreadPool(15, - './multifunctionWorker.js', - { errorHandler: (e) => console.error(e), onlineHandler: () => console.log('worker is online') }) +const { FixedThreadPool } = require('poolifier') +const pool = new FixedThreadPool(15, './multiFunctionWorker.js', { + errorHandler: e => console.error(e), + onlineHandler: () => console.log('worker is online') +}) -pool.execute({ fname: 'fn0', input: 'hello' }).then(res => console.log(res)) -pool.execute({ fname: 'fn1', input: 'multifunction' }).then(res => console.log(res)) +pool + .execute({ text: 'hello' }, 'fn0') + .then(res => console.log(res)) + .catch(err => console.error(err)) +pool + .execute({ text: 'multiple functions' }, 'fn1') + .then(res => console.log(res)) + .catch(err => console.error(err)) -setTimeout(pool.destroy.bind(pool), 3000) +setTimeout(pool.destroy(), 3000)