Uses of Class
org.apache.hc.client5.http.config.ConnectionConfig
-
Packages that use ConnectionConfig Package Description org.apache.hc.client5.http.config HTTP client configuration APIs.org.apache.hc.client5.http.impl.async Asynchronous HTTP client API implementation that supports both HTTP/2 and HTTP/1.1 transport.org.apache.hc.client5.http.impl.io Client connection management functions based the classic connection management APIs.org.apache.hc.client5.http.impl.nio Client connection management functions based the asynchronous connection management APIs. -
-
Uses of ConnectionConfig in org.apache.hc.client5.http.config
Fields in org.apache.hc.client5.http.config declared as ConnectionConfig Modifier and Type Field Description static ConnectionConfig
ConnectionConfig. DEFAULT
Methods in org.apache.hc.client5.http.config that return ConnectionConfig Modifier and Type Method Description ConnectionConfig
ConnectionConfig.Builder. build()
protected ConnectionConfig
ConnectionConfig. clone()
Methods in org.apache.hc.client5.http.config with parameters of type ConnectionConfig Modifier and Type Method Description static ConnectionConfig.Builder
ConnectionConfig. copy(ConnectionConfig config)
-
Uses of ConnectionConfig in org.apache.hc.client5.http.impl.async
Fields in org.apache.hc.client5.http.impl.async with type parameters of type ConnectionConfig Modifier and Type Field Description private org.apache.hc.core5.function.Resolver<org.apache.hc.core5.http.HttpHost,ConnectionConfig>
H2AsyncClientBuilder. connectionConfigResolver
private org.apache.hc.core5.function.Resolver<org.apache.hc.core5.http.HttpHost,ConnectionConfig>
InternalH2ConnPool. connectionConfigResolver
Methods in org.apache.hc.client5.http.impl.async that return ConnectionConfig Modifier and Type Method Description private ConnectionConfig
InternalH2ConnPool. resolveConnectionConfig(org.apache.hc.core5.http.HttpHost httpHost)
Methods in org.apache.hc.client5.http.impl.async with parameters of type ConnectionConfig Modifier and Type Method Description H2AsyncClientBuilder
H2AsyncClientBuilder. setDefaultConnectionConfig(ConnectionConfig connectionConfig)
Assigns the sameConnectionConfig
for all hosts.Method parameters in org.apache.hc.client5.http.impl.async with type arguments of type ConnectionConfig Modifier and Type Method Description H2AsyncClientBuilder
H2AsyncClientBuilder. setConnectionConfigResolver(org.apache.hc.core5.function.Resolver<org.apache.hc.core5.http.HttpHost,ConnectionConfig> connectionConfigResolver)
AssignsResolver
forConnectionConfig
on a per host basis.void
InternalH2ConnPool. setConnectionConfigResolver(org.apache.hc.core5.function.Resolver<org.apache.hc.core5.http.HttpHost,ConnectionConfig> connectionConfigResolver)
void
MinimalH2AsyncClient. setConnectionConfigResolver(org.apache.hc.core5.function.Resolver<org.apache.hc.core5.http.HttpHost,ConnectionConfig> connectionConfigResolver)
SetsResolver
forConnectionConfig
on a per host basis. -
Uses of ConnectionConfig in org.apache.hc.client5.http.impl.io
Fields in org.apache.hc.client5.http.impl.io declared as ConnectionConfig Modifier and Type Field Description private ConnectionConfig
BasicHttpClientConnectionManager. connectionConfig
Fields in org.apache.hc.client5.http.impl.io with type parameters of type ConnectionConfig Modifier and Type Field Description private org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig>
PoolingHttpClientConnectionManager. connectionConfigResolver
private org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig>
PoolingHttpClientConnectionManagerBuilder. connectionConfigResolver
Methods in org.apache.hc.client5.http.impl.io that return ConnectionConfig Modifier and Type Method Description ConnectionConfig
BasicHttpClientConnectionManager. getConnectionConfig()
private ConnectionConfig
PoolingHttpClientConnectionManager. resolveConnectionConfig(HttpRoute route)
Methods in org.apache.hc.client5.http.impl.io with parameters of type ConnectionConfig Modifier and Type Method Description private org.apache.hc.core5.util.TimeValue
PoolingHttpClientConnectionManager. resolveValidateAfterInactivity(ConnectionConfig connectionConfig)
void
BasicHttpClientConnectionManager. setConnectionConfig(ConnectionConfig connectionConfig)
void
PoolingHttpClientConnectionManager. setDefaultConnectionConfig(ConnectionConfig config)
Sets the sameConnectionConfig
for all routesPoolingHttpClientConnectionManagerBuilder
PoolingHttpClientConnectionManagerBuilder. setDefaultConnectionConfig(ConnectionConfig config)
Assigns the sameConnectionConfig
for all routes.Method parameters in org.apache.hc.client5.http.impl.io with type arguments of type ConnectionConfig Modifier and Type Method Description void
PoolingHttpClientConnectionManager. setConnectionConfigResolver(org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig> connectionConfigResolver)
SetsResolver
ofConnectionConfig
on a per route basis.PoolingHttpClientConnectionManagerBuilder
PoolingHttpClientConnectionManagerBuilder. setConnectionConfigResolver(org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig> connectionConfigResolver)
AssignsResolver
ofConnectionConfig
on a per route basis. -
Uses of ConnectionConfig in org.apache.hc.client5.http.impl.nio
Fields in org.apache.hc.client5.http.impl.nio with type parameters of type ConnectionConfig Modifier and Type Field Description private org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig>
PoolingAsyncClientConnectionManager. connectionConfigResolver
private org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig>
PoolingAsyncClientConnectionManagerBuilder. connectionConfigResolver
Methods in org.apache.hc.client5.http.impl.nio that return ConnectionConfig Modifier and Type Method Description private ConnectionConfig
PoolingAsyncClientConnectionManager. resolveConnectionConfig(HttpRoute route)
Methods in org.apache.hc.client5.http.impl.nio with parameters of type ConnectionConfig Modifier and Type Method Description void
PoolingAsyncClientConnectionManager. setDefaultConnectionConfig(ConnectionConfig config)
Sets the sameConnectionConfig
for all routesPoolingAsyncClientConnectionManagerBuilder
PoolingAsyncClientConnectionManagerBuilder. setDefaultConnectionConfig(ConnectionConfig config)
Assigns the sameConnectionConfig
for all routes.Method parameters in org.apache.hc.client5.http.impl.nio with type arguments of type ConnectionConfig Modifier and Type Method Description void
PoolingAsyncClientConnectionManager. setConnectionConfigResolver(org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig> connectionConfigResolver)
SetsResolver
ofConnectionConfig
on a per route basis.PoolingAsyncClientConnectionManagerBuilder
PoolingAsyncClientConnectionManagerBuilder. setConnectionConfigResolver(org.apache.hc.core5.function.Resolver<HttpRoute,ConnectionConfig> connectionConfigResolver)
AssignsResolver
ofConnectionConfig
on a per route basis.
-