Reset all internal statistics at worker choice strategy change
[poolifier.git] / src / pools / pool.ts
index 8da89156ecef7869dd1d8a4e5fe5096a168e8280..e9a093fad6c0287f68f1758a5bc4902d80383317 100644 (file)
@@ -46,18 +46,18 @@ export interface PoolOptions<Worker> {
  */
 export interface IPool<Data = unknown, Response = unknown> {
   /**
-   * Perform the task specified in the constructor with the data parameter.
+   * Performs 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.
+   * Shutdowns every current worker in this pool.
    */
   destroy(): Promise<void>
   /**
-   * Set the worker choice strategy in this pool.
+   * Sets the worker choice strategy in this pool.
    *
    * @param workerChoiceStrategy The worker choice strategy.
    */