X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Fworker-options.ts;h=a6af1ec076916ec74fc1d69164aede194e189498;hb=45bfccce0607e9f9f089374dad9f5b16960e272e;hp=10589643d65764f3d68ffc41345d52e9e19250d4;hpb=2324f8c9233f6e036eee418327c46bb7e71356b9;p=poolifier.git diff --git a/src/worker/worker-options.ts b/src/worker/worker-options.ts index 10589643..a6af1ec0 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. @@ -56,11 +56,4 @@ export interface WorkerOptions { * @defaultValue `() => {}` */ killHandler?: KillHandler - /** - * Whether your worker will perform asynchronous or not. - * - * @defaultValue false - * @deprecated This option will be removed in the next major version. - */ - async?: boolean }