X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=f96e5c0cbff3ed84afe5d06c6ac8f2097539ba9f;hb=e5177d860cd10dd89b107cc6692e9989286b3a7c;hp=0c9b232f2bca650dc6f7aed065f15e6e0061a99d;hpb=c97c7edb14ea0699cd82bce5d0ffe50ae26af667;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 0c9b232f..f96e5c0c 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -1,9 +1,19 @@ -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 +/** + * Contract definition for a poolifier pool. + * + * @template Data Type of data sent to the worker. + * @template Response Type of response of execution. + */ +export interface IPool { + /** + * Perform the task specified in the constructor with the data parameter. + * + * @param data The input for the specified task. + * @returns Promise that will be resolved when the task is successfully completed. + */ execute(data: Data): Promise + /** + * Shut down every current worker in this pool. + */ + destroy(): Promise }