(maxPerWindow = 5, windowMs = 60_000)
| 24 | private readonly windowMs: number; |
| 25 | |
| 26 | constructor(maxPerWindow = 5, windowMs = 60_000) { |
| 27 | this.maxPerWindow = maxPerWindow; |
| 28 | this.windowMs = windowMs; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Returns true if the connection should be allowed. |
nothing calls this directly
no outgoing calls
no test coverage detected