(descriptions?: Iterable<ServerDescription>)
| 23 | private deprioritized: Set<string> = new Set(); |
| 24 | |
| 25 | constructor(descriptions?: Iterable<ServerDescription>) { |
| 26 | for (const description of descriptions ?? []) { |
| 27 | this.add(description); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | add({ address }: ServerDescription) { |
| 32 | this.deprioritized.add(address); |