X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docs%2Finterfaces%2FWorkerOptions.html;h=4b09c5ed6954c8413ba8105bcdbdfe36ef187600;hb=c4424e52e4924efa5eef704cb5dcb82f2760e0da;hp=8123464e85c9c768d9091b851711c9b94ecdbbc3;hpb=20ebfb03d96dc805e59643cf1f90667545a3fef2;p=poolifier.git diff --git a/docs/interfaces/WorkerOptions.html b/docs/interfaces/WorkerOptions.html index 8123464e..4b09c5ed 100644 --- a/docs/interfaces/WorkerOptions.html +++ b/docs/interfaces/WorkerOptions.html @@ -1,4 +1,4 @@ -WorkerOptions | poolifier
+WorkerOptions | poolifier - v2.6.23
  • Preparing search index...
  • -
  • The search index is not available
poolifier
+
  • The search index is not available
  • poolifier - v2.6.23
    @@ -24,7 +24,7 @@
    • WorkerOptions
    +
  • Defined in src/worker/worker-options.ts:23
  • @@ -49,11 +49,11 @@

    Deprecated

    This option will be removed in the next major version.

    +
  • Defined in src/worker/worker-options.ts:43
  • killBehavior?: "SOFT" | "HARD"
    -

    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 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.
    • @@ -64,16 +64,16 @@

      Default Value

      KillBehaviors.SOFT

    +
  • Defined in src/worker/worker-options.ts:54
  • maxInactiveTime?: number
    -

    Maximum waiting time in milliseconds for tasks.

    +

    Maximum waiting time in milliseconds for tasks on newly created workers.

    After this time, newly created workers will be terminated. -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.

    +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 and the worker is killed if is not part of the minimum size of 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.
    @@ -81,7 +81,7 @@ when this timeout expires your tasks is interrupted and the worker is killed if

    Default Value

    60000

    +
  • Defined in src/worker/worker-options.ts:36