X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=682a356f75654ed6eb4d8986ed5d4275c4e441de;hb=85003dff831b309b12d624215a8d67634af82b50;hp=6ab9a619b3eeacff223da162b6172c53a6cf5710;hpb=968a2e8ca7bfc81d61b5ffc820a6a76bf44b202f;p=poolifier.git diff --git a/README.md b/README.md index 6ab9a619..682a356f 100644 --- a/README.md +++ b/README.md @@ -241,7 +241,7 @@ This method is available on both pool implementations and will call the terminat ### `class YourWorker extends ThreadWorker/ClusterWorker` -`taskFunctions` (mandatory) The task function or task functions object `{ name_1: fn_1, ..., name_n, fn_n }` that you want to execute on the worker +`taskFunctions` (mandatory) The task function or task functions object `{ name_1: fn_1, ..., name_n: fn_n }` that you want to execute on the worker `opts` (optional) An object with these properties: - `maxInactiveTime` (optional) - Max time to wait tasks to work on in milliseconds, after this period the new worker will die. @@ -264,7 +264,7 @@ This method is available on both worker implementations and returns a boolean. #### `YourWorker.addTaskFunction(name, fn)` -`name` (mandatory) The task function name +`name` (mandatory) The task function name `fn` (mandatory) The task function This method is available on both worker implementations and returns a boolean.