X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fworker-options.ts;h=b2efb7acbce451a5d0ec663e357f5104ec243c6e;hb=9d96ba4ea0e2e4b06216657cb1641551b59f58ee;hp=384b2a1104498520719c220aa9300398faf1d2bd;hpb=968dbbe773c54624ebead8c704dbc10b4b1abe54;p=poolifier.git diff --git a/src/worker/worker-options.ts b/src/worker/worker-options.ts index 384b2a11..b2efb7ac 100644 --- a/src/worker/worker-options.ts +++ b/src/worker/worker-options.ts @@ -38,7 +38,7 @@ export interface WorkerOptions { */ killBehavior?: KillBehavior /** - * Maximum waiting time in milliseconds for tasks on newly created workers. + * Maximum waiting time in milliseconds for tasks on newly created workers. It must be greater or equal than 5. * * After this time, newly created workers will be terminated. * The last active time of your worker will be updated when it terminates a task. @@ -52,6 +52,8 @@ export interface WorkerOptions { maxInactiveTime?: number /** * The function to call when a worker is killed. + * + * @defaultValue `() => {}` */ killHandler?: KillHandler /**