* Gets a boolean indicating if the pool is being closed / shutting down or has been shutdown.
()
| 381 | * Gets a boolean indicating if the pool is being closed / shutting down or has been shutdown. |
| 382 | */ |
| 383 | isClosing() { |
| 384 | return this._state !== state.initial; |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Gracefully waits for all in-flight requests to finish and closes the pool. |
no outgoing calls
no test coverage detected