Use type import for cluster Worker
[poolifier.git] / src / pools / pool.ts
index 0c9b232f2bca650dc6f7aed065f15e6e0061a99d..752045829214f76681f92d36fce414c581fd0c95 100644 (file)
@@ -1,9 +1,27 @@
-export interface IPool<
-  // eslint-disable-next-line @typescript-eslint/no-explicit-any
-  Data = any,
-  // eslint-disable-next-line @typescript-eslint/no-explicit-any
-  Response = any
-> {
-  destroy(): Promise<void>
+import type { WorkerChoiceStrategy } from './selection-strategies'
+
+/**
+ * Contract definition for a poolifier pool.
+ *
+ * @template Data Type of data sent to the worker. This can only be serializable data.
+ * @template Response Type of response of execution. This can only be serializable data.
+ */
+export interface IPool<Data = unknown, Response = unknown> {
+  /**
+   * Perform the task specified in the constructor with the data parameter.
+   *
+   * @param data The input for the specified task. This can only be serializable data.
+   * @returns Promise that will be resolved when the task is successfully completed.
+   */
   execute(data: Data): Promise<Response>
+  /**
+   * Shut down every current worker in this pool.
+   */
+  destroy(): Promise<void>
+  /**
+   * Set the worker choice strategy in this pool.
+   *
+   * @param workerChoiceStrategy The worker choice strategy.
+   */
+  setWorkerChoiceStrategy(workerChoiceStrategy: WorkerChoiceStrategy): void
 }