* Determines if the topology has a definition for the provided address * @internal
(address: string)
| 339 | * @internal |
| 340 | */ |
| 341 | hasServer(address: string): boolean { |
| 342 | return this.servers.has(address); |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * Returns a JSON-serializable representation of the TopologyDescription. This is primarily |
no test coverage detected