refactor: cleanup dead code
[poolifier.git] / src / pools / pool.ts
index 546f67b79ad8f48cf1019cdc67d132c41975c0b4..3aa9feb70b04d8ea3b321777dd053d9823d994b0 100644 (file)
@@ -240,14 +240,6 @@ export interface IPool<
    * @internal
    */
   readonly workerNodes: Array<IWorkerNode<Worker, Data>>
-  /**
-   * Whether the worker node has back pressure (i.e. its tasks queue is full).
-   *
-   * @param workerNodeKey - The worker node key.
-   * @returns `true` if the worker node has back pressure, `false` otherwise.
-   * @internal
-   */
-  readonly hasWorkerNodeBackPressure: (workerNodeKey: number) => boolean
   /**
    * Event emitter integrated with async resource on which events can be listened to.
    * The async tracking tooling identifier is `poolifier:<PoolType>-<WorkerType>-pool`.