From: Jérôme Benoit Date: Fri, 18 Aug 2023 12:28:20 +0000 (+0200) Subject: docs: add scope on pool public API X-Git-Tag: v2.6.29~17 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=9768f49f952bcb39789e9b7b5679e1d635cb262d;p=poolifier.git docs: add scope on pool public API Signed-off-by: Jérôme Benoit --- diff --git a/src/pools/pool.ts b/src/pools/pool.ts index a0d3a941..c7b878ae 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -178,6 +178,8 @@ export interface IPool< readonly info: PoolInfo /** * Pool worker nodes. + * + * @internal */ readonly workerNodes: Array> /** @@ -185,6 +187,7 @@ export interface IPool< * * @param workerNodeKey - The worker node key. * @returns `true` if the worker node has back pressure, `false` otherwise. + * @internal */ readonly hasWorkerNodeBackPressure: (workerNodeKey: number) => boolean /**