packages/http-pool. This separation keeps the core HTTP client focused on single-request transport while giving the pooling layer its own lifecycle and dependencies.
Where to Find Pooling
The pooling API is provided by thehttp-pool package. The key types are:
Refer to
packages/http-pool/docs/ for full documentation on configuring concurrency limits, handling per-request errors, and collecting results.
Collection Types
The request and response collection types remain in thehttp-client package since they are useful beyond pooling:
HttpRequestList
A typed, immutable collection ofHttpRequest objects:
HttpResponseList
A typed, immutable collection ofResult objects, where each result wraps either a successful HttpResponse or an error: