X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=src%2Futility-types.ts;h=0723b4395407a94b18d3cafcfc6e5db2360017e0;hb=2826fc7a3ba7197b08fe5c352d8965b234f3abc5;hp=28bf19e256abaef2f619051773ad55456643b842;hpb=3557031d88b5ff00ea86695728b3ba3af46e9faa;p=poolifier.git diff --git a/src/utility-types.ts b/src/utility-types.ts index 28bf19e2..0723b439 100644 --- a/src/utility-types.ts +++ b/src/utility-types.ts @@ -115,9 +115,9 @@ export interface MessageValue */ readonly ready?: boolean /** - * Whether the worker starts or stops its aliveness check. + * Whether the worker starts or stops its activity check. */ - readonly checkAlive?: boolean + readonly checkActive?: boolean } /** @@ -134,11 +134,11 @@ export interface PromiseResponseWrapper< /** * Resolve callback to fulfill the promise. */ - readonly resolve: (value: Response) => void + readonly resolve: (value: Response | PromiseLike) => void /** * Reject callback to reject the promise. */ - readonly reject: (reason?: string) => void + readonly reject: (reason?: unknown) => void /** * The worker handling the execution. */