Std.Http.Server.Guard.boundedConcurrency
fn
boundedConcurrency: Int -> fn(Std.Http.Server.Route.Request, fn(Std.Http.Server.Route.Request) -> Std.Http.Response) -> Std.Http.ResponseThis is a callable function.
What it does
Bounded concurrent request admission middleware enforcing backpressure.
When active inflight requests reach `maxInflight`, excess requests are shed immediately
with status 503 Service Unavailable and `Retry-After: 1`, preventing memory starvation.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
