X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futility-types.ts;h=a8da491e16fe62143d1d716672c4b4db44aa8e9f;hb=refs%2Ftags%2Fv2.6.10;hp=980c00896a0ebf23f75162605cccf52548cc535f;hpb=75d3401a50550a9fc53e2e7d107bc2d776df83e3;p=poolifier.git diff --git a/src/utility-types.ts b/src/utility-types.ts index 980c0089..a8da491e 100644 --- a/src/utility-types.ts +++ b/src/utility-types.ts @@ -8,10 +8,6 @@ import type { IWorker, Task } from './pools/worker' * @typeParam Data - Type of data sent to the worker triggering an error. This can only be structured-cloneable data. */ export interface TaskError { - /** - * Worker id. - */ - readonly workerId: number /** * Error message. */ @@ -61,14 +57,10 @@ export interface WorkerStatistics { */ export interface MessageValue extends Task { - /** - * Worker id. - */ - readonly workerId?: number /** * Kill code. */ - readonly kill?: KillBehavior | 1 + readonly kill?: KillBehavior | true /** * Task error. */ @@ -82,13 +74,13 @@ export interface MessageValue */ readonly statistics?: WorkerStatistics /** - * Whether the worker has started or not. + * Whether the worker is ready or not. */ - readonly started?: boolean + readonly ready?: boolean /** - * Whether the worker is dynamic or not. + * Whether the worker starts or stops its aliveness check. */ - readonly dynamic?: boolean + readonly checkAlive?: boolean } /**