X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=c5aff97f6f3247a41bfbcb978ce5be54f8ec77ae;hb=5638656490e743ca058b6c2a3c7eef35b06c2ae4;hp=3468c4ade574ea4eea132b1188ab71b0978ecb88;hpb=3e406edee2c758263a2e8d8bbbaaeff951a3db7a;p=poolifier.git diff --git a/README.md b/README.md index 3468c4ad..c5aff97f 100644 --- a/README.md +++ b/README.md @@ -5,22 +5,22 @@

Node Thread Pool and Cluster Pool :arrow_double_up: :on:

+ + GitHub commit activity (master) Weekly Downloads Actions Status - - Quality Gate Status Code Coverage + + Quality Gate Status Javascript Standard Style Guide Gitter chat Open Collective - - Dependabot PR Welcome @@ -241,16 +241,16 @@ 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. - The last active time of your worker unit will be updated when a task is submitted to a worker or when a worker terminate a task. +- `maxInactiveTime` (optional) - Maximum waiting time in milliseconds for tasks on newly created workers. After this time newly created workers will die. + The last active time of your worker will be updated when it terminates a task. If `killBehavior` is set to `KillBehaviors.HARD` this value represents also the timeout for the tasks that you submit to the pool, when this timeout expires your tasks is interrupted before completion and removed. The worker is killed if is not part of the minimum size of the pool. If `killBehavior` is set to `KillBehaviors.SOFT` your tasks have no timeout and your workers will not be terminated until your task is completed. Default: `60000` -- `killBehavior` (optional) - Dictates if your async unit (worker/process) will be deleted in case that a task is active on it. +- `killBehavior` (optional) - Dictates if your worker will be deleted in case a task is active on it. **KillBehaviors.SOFT**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still executing or queued, then the worker **won't** be deleted. **KillBehaviors.HARD**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still executing or queued, then the worker will be deleted. This option only apply to the newly created workers.