(capacity: number)
| 433 | private writeIdx = 0 |
| 434 | |
| 435 | constructor(capacity: number) { |
| 436 | this.capacity = capacity |
| 437 | this.ring = new Array<string | undefined>(capacity) |
| 438 | } |
| 439 | |
| 440 | add(uuid: string): void { |
| 441 | if (this.set.has(uuid)) return |
nothing calls this directly
no outgoing calls
no test coverage detected