pub struct HttpClientBuilder { /* private fields */ }
Expand description
An HTTP client builder, capable of creating custom HttpClient
instances
with customized behavior.
Any option that can be configured per-request can also be configured on a
client builder as a default setting. Request configuration is provided by
the Configurable
trait, which is also available in the
prelude
module.
§Examples
use isahc::{
config::{RedirectPolicy, VersionNegotiation},
prelude::*,
HttpClient,
};
use std::time::Duration;
let client = HttpClient::builder()
.timeout(Duration::from_secs(60))
.redirect_policy(RedirectPolicy::Limit(10))
.version_negotiation(VersionNegotiation::http2())
.build()?;
Implementations§
Source§impl HttpClientBuilder
impl HttpClientBuilder
Sourcepub fn new() -> Self
pub fn new() -> Self
Create a new builder for building a custom client. All configuration will start out with the default values.
This is equivalent to the Default
implementation.
Available on crate feature cookies
only.
cookies
only.Enable persistent cookie handling for all requests using this client using a shared cookie jar.
§Examples
use isahc::{prelude::*, HttpClient};
// Create a client with a cookie jar.
let client = HttpClient::builder()
.cookies()
.build()?;
// Make a request that sets a cookie.
let uri = "http://httpbin.org/cookies/set?foo=bar".parse()?;
client.get(&uri)?;
// Get the cookie from the cookie jar.
let cookie = client.cookie_jar()
.unwrap()
.get_by_name(&uri, "foo")
.unwrap();
assert_eq!(cookie, "bar");
§Availability
This method is only available when the cookies
feature is enabled.
Sourcepub fn max_connections(self, max: usize) -> Self
pub fn max_connections(self, max: usize) -> Self
Set a maximum number of simultaneous connections that this client is allowed to keep open at one time.
If set to a value greater than zero, no more than max
connections will
be opened at one time. If executing a new request would require opening
a new connection, then the request will stay in a “pending” state until
an existing connection can be used or an active request completes and
can be closed, making room for a new connection.
Setting this value to 0
disables the limit entirely.
This is an effective way of limiting the number of sockets or file descriptors that this client will open, though note that the client may use file descriptors for purposes other than just HTTP connections.
By default this value is 0
and no limit is enforced.
To apply a limit per-host, see
HttpClientBuilder::max_connections_per_host
.
Sourcepub fn max_connections_per_host(self, max: usize) -> Self
pub fn max_connections_per_host(self, max: usize) -> Self
Set a maximum number of simultaneous connections that this client is allowed to keep open to individual hosts at one time.
If set to a value greater than zero, no more than max
connections will
be opened to a single host at one time. If executing a new request would
require opening a new connection, then the request will stay in a
“pending” state until an existing connection can be used or an active
request completes and can be closed, making room for a new connection.
Setting this value to 0
disables the limit entirely. By default this
value is 0
and no limit is enforced.
To set a global limit across all hosts, see
HttpClientBuilder::max_connections
.
Sourcepub fn connection_cache_size(self, size: usize) -> Self
pub fn connection_cache_size(self, size: usize) -> Self
Set the size of the connection cache.
After requests are completed, if the underlying connection is reusable, it is added to the connection cache to be reused to reduce latency for future requests.
Setting the size to 0
disables connection caching for all requests
using this client.
By default this value is unspecified. A reasonable default size will be chosen.
Sourcepub fn connection_cache_ttl(self, ttl: Duration) -> Self
pub fn connection_cache_ttl(self, ttl: Duration) -> Self
Set the maximum time-to-live (TTL) for connections to remain in the connection cache.
After requests are completed, if the underlying connection is reusable, it is added to the connection cache to be reused to reduce latency for future requests. This option controls how long such connections should be still considered valid before being discarded.
Old connections have a high risk of not working any more and thus attempting to use them wastes time if the server has disconnected.
The default TTL is 118 seconds.
Sourcepub fn dns_cache<C>(self, cache: C) -> Self
pub fn dns_cache<C>(self, cache: C) -> Self
Configure DNS caching.
By default, DNS entries are cached by the client executing the request and are used until the entry expires. Calling this method allows you to change the entry timeout duration or disable caching completely.
Note that DNS entry TTLs are not respected, regardless of this setting.
By default caching is enabled with a 60 second timeout.
§Examples
use isahc::{config::*, prelude::*, HttpClient};
use std::time::Duration;
let client = HttpClient::builder()
// Cache entries for 10 seconds.
.dns_cache(Duration::from_secs(10))
// Cache entries forever.
.dns_cache(DnsCache::Forever)
// Don't cache anything.
.dns_cache(DnsCache::Disable)
.build()?;
Sourcepub fn dns_resolve(self, map: ResolveMap) -> Self
pub fn dns_resolve(self, map: ResolveMap) -> Self
Set a mapping of DNS resolve overrides.
Entries in the given map will be used first before using the default DNS resolver for host+port pairs.
Note that DNS resolving is only performed when establishing a new
§Examples
use isahc::{config::ResolveMap, prelude::*, HttpClient};
use std::net::IpAddr;
let client = HttpClient::builder()
.dns_resolve(ResolveMap::new()
// Send requests for example.org on port 80 to 127.0.0.1.
.add("example.org", 80, [127, 0, 0, 1]))
.build()?;
Sourcepub fn default_header<K, V>(self, key: K, value: V) -> Selfwhere
HeaderName: TryFrom<K>,
<HeaderName as TryFrom<K>>::Error: Into<Error>,
HeaderValue: TryFrom<V>,
<HeaderValue as TryFrom<V>>::Error: Into<Error>,
pub fn default_header<K, V>(self, key: K, value: V) -> Selfwhere
HeaderName: TryFrom<K>,
<HeaderName as TryFrom<K>>::Error: Into<Error>,
HeaderValue: TryFrom<V>,
<HeaderValue as TryFrom<V>>::Error: Into<Error>,
Add a default header to be passed with every request.
If a default header value is already defined for the given key, then a second header value will be appended to the list and multiple header values will be included in the request.
If any values are defined for this header key on an outgoing request, they will override any default header values.
If the header key or value are malformed, HttpClientBuilder::build
will return an error.
§Examples
use isahc::{prelude::*, HttpClient};
let client = HttpClient::builder()
.default_header("some-header", "some-value")
.build()?;
Sourcepub fn default_headers<K, V, I, P>(self, headers: I) -> Selfwhere
HeaderName: TryFrom<K>,
<HeaderName as TryFrom<K>>::Error: Into<Error>,
HeaderValue: TryFrom<V>,
<HeaderValue as TryFrom<V>>::Error: Into<Error>,
I: IntoIterator<Item = P>,
P: HeaderPair<K, V>,
pub fn default_headers<K, V, I, P>(self, headers: I) -> Selfwhere
HeaderName: TryFrom<K>,
<HeaderName as TryFrom<K>>::Error: Into<Error>,
HeaderValue: TryFrom<V>,
<HeaderValue as TryFrom<V>>::Error: Into<Error>,
I: IntoIterator<Item = P>,
P: HeaderPair<K, V>,
Set the default headers to include in every request, replacing any previously set default headers.
Headers defined on an individual request always override headers in the default map.
If any header keys or values are malformed, HttpClientBuilder::build
will return an error.
§Examples
Set default headers from a slice:
use isahc::{prelude::*, HttpClient};
let mut builder = HttpClient::builder()
.default_headers(&[
("some-header", "value1"),
("some-header", "value2"),
("some-other-header", "some-other-value"),
])
.build()?;
Using an existing header map:
use isahc::{prelude::*, HttpClient};
let mut headers = http::HeaderMap::new();
headers.append("some-header".parse::<http::header::HeaderName>()?, "some-value".parse()?);
let mut builder = HttpClient::builder()
.default_headers(&headers)
.build()?;
Using a hashmap:
use isahc::{prelude::*, HttpClient};
use std::collections::HashMap;
let mut headers = HashMap::new();
headers.insert("some-header", "some-value");
let mut builder = HttpClient::builder()
.default_headers(headers)
.build()?;
Sourcepub fn build(self) -> Result<HttpClient, Error>
pub fn build(self) -> Result<HttpClient, Error>
Build an HttpClient
using the configured options.
If the client fails to initialize, an error will be returned.
Trait Implementations§
Source§impl Configurable for HttpClientBuilder
impl Configurable for HttpClientBuilder
cookies
only.Source§fn timeout(self, timeout: Duration) -> Self
fn timeout(self, timeout: Duration) -> Self
Source§fn connect_timeout(self, timeout: Duration) -> Self
fn connect_timeout(self, timeout: Duration) -> Self
Source§fn low_speed_timeout(self, low_speed: u32, timeout: Duration) -> Self
fn low_speed_timeout(self, low_speed: u32, timeout: Duration) -> Self
low_speed
is that limit in bytes/s. Read moreSource§fn version_negotiation(self, negotiation: VersionNegotiation) -> Self
fn version_negotiation(self, negotiation: VersionNegotiation) -> Self
Source§fn redirect_policy(self, policy: RedirectPolicy) -> Self
fn redirect_policy(self, policy: RedirectPolicy) -> Self
Source§fn auto_referer(self) -> Self
fn auto_referer(self) -> Self
Referer
header automatically when following redirects.Source§fn automatic_decompression(self, decompress: bool) -> Self
fn automatic_decompression(self, decompress: bool) -> Self
Content-Encoding
response header. Read moreSource§fn expect_continue<T>(self, expect: T) -> Selfwhere
T: Into<ExpectContinue>,
fn expect_continue<T>(self, expect: T) -> Selfwhere
T: Into<ExpectContinue>,
Expect
request header when sending request
bodies with HTTP/1.1. Read moreSource§fn authentication(self, authentication: Authentication) -> Self
fn authentication(self, authentication: Authentication) -> Self
Source§fn credentials(self, credentials: Credentials) -> Self
fn credentials(self, credentials: Credentials) -> Self
Source§fn tcp_keepalive(self, interval: Duration) -> Self
fn tcp_keepalive(self, interval: Duration) -> Self
Source§fn tcp_nodelay(self) -> Self
fn tcp_nodelay(self) -> Self
TCP_NODELAY
option on connect.