* Gets the least busy connection from the pool. * @param {Connection} [previousConnection] When provided, the pool should attempt to obtain a different connection. * @returns {Connection!} * @throws {Error} * @throws {BusyConnectionError} * @internal * @ignore
(previousConnection)
| 294 | * @ignore |
| 295 | */ |
| 296 | borrowConnection(previousConnection) { |
| 297 | return this.pool.borrowConnection(previousConnection); |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * Creates all the connection in the pool. |
no outgoing calls
no test coverage detected