(name)
| 308 | } |
| 309 | |
| 310 | getThread(name) { |
| 311 | let thread = this.threads.get(name); |
| 312 | if (!thread) { |
| 313 | thread = new Thread(this.#supportedOperations); |
| 314 | this.threads.set(name, thread); |
| 315 | } |
| 316 | |
| 317 | return thread; |
| 318 | } |
| 319 | |
| 320 | createPool(options) { |
| 321 | this.pool = new ConnectionPool(this.#server, { |
no test coverage detected