* Attempt to move an available resource to a waiting client * @return {Boolean} [description]
()
| 198 | * @return {Boolean} [description] |
| 199 | */ |
| 200 | _dispatchResource() { |
| 201 | if (this._availableObjects.length < 1) { |
| 202 | return false; |
| 203 | } |
| 204 | |
| 205 | const pooledResource = this._availableObjects.shift(); |
| 206 | this._dispatchPooledResourceToNextWaitingClient(pooledResource); |
| 207 | return false; |
| 208 | } |
| 209 | |
| 210 | /** |
| 211 | * Attempt to resolve an outstanding resource request using an available resource from |
no test coverage detected