Record: PoolConfiguration
Configurations for managing HTTP client connection pool.
Closed record
Fields
- maxActiveConnections int(default maxActiveConnections)
- maxIdleConnections int(default maxIdleConnections)
- waitTime decimal(default waitTime)
- maxActiveStreamsPerConnection int(default maxActiveStreamsPerConnection)
Max active connections per route(host:port). Default value is -1 which indicates unlimited.
Maximum number of idle connections allowed per pool.
Maximum amount of time (in seconds), the client should wait for an idle connection before it sends an error when the pool is exhausted
Maximum active streams per connection. This only applies to HTTP/2.