From 9768f49f952bcb39789e9b7b5679e1d635cb262d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 18 Aug 2023 14:28:20 +0200 Subject: [PATCH] docs: add scope on pool public API MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/pools/pool.ts | 3 +++ 1 file changed, 3 insertions(+) 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 /** -- 2.34.1