X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fworker-options.ts;h=93f56512a42ec02587d3aa21170b36a04698bee4;hb=3f7d99f5a6b9783554886f1850aa45c5bc237b65;hp=75d3dd5b98bf1d8e633d3b58c0190cd3c1f20f93;hpb=3d6dd312a7825521cce506ebb7443bae36a111e6;p=poolifier.git diff --git a/src/worker/worker-options.ts b/src/worker/worker-options.ts index 75d3dd5b..93f56512 100644 --- a/src/worker/worker-options.ts +++ b/src/worker/worker-options.ts @@ -42,7 +42,7 @@ export interface WorkerOptions { */ async?: boolean /** - * `killBehavior` dictates if your async unit (worker/process) will be deleted in case that a task is active on it. + * `killBehavior` dictates if your worker will be deleted in case that a task is active on it. * * - SOFT: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still executing or queued, then the worker **won't** be deleted. * - HARD: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still executing or queued, then the worker will be deleted.