chore: v2.6.10
[poolifier.git] / src / utility-types.ts
index 2035235022d13f49cb39c98e3ea10b91cf7ca8ec..a8da491e16fe62143d1d716672c4b4db44aa8e9f 100644 (file)
@@ -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<Data = unknown> {
-  /**
-   * Worker id.
-   */
-  readonly workerId: number
   /**
    * Error message.
    */
@@ -61,10 +57,6 @@ export interface WorkerStatistics {
  */
 export interface MessageValue<Data = unknown, ErrorData = unknown>
   extends Task<Data> {
-  /**
-   * Worker id.
-   */
-  readonly workerId?: number
   /**
    * Kill code.
    */
@@ -82,9 +74,9 @@ export interface MessageValue<Data = unknown, ErrorData = unknown>
    */
   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 starts or stops its aliveness check.
    */