OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.addNetworkInterceptor(okhttp3.Interceptor networkInterceptor) |
Add a network layer interceptor to Http request pipeline.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.configuration(Configuration configuration) |
Sets the configuration store that is used during construction of the HTTP client.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.connectionPool(okhttp3.ConnectionPool connectionPool) |
Sets the Http connection pool.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.connectionTimeout(Duration connectionTimeout) |
Sets the connection timeout for a request to be sent.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.dispatcher(okhttp3.Dispatcher dispatcher) |
Sets the dispatcher that also composes the thread pool for executing HTTP requests.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.followRedirects(boolean followRedirects) |
Sets the followRedirect flag on the underlying OkHttp-backed HttpClient.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.networkInterceptors(List<okhttp3.Interceptor> networkInterceptors) |
Add network layer interceptors to Http request pipeline.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.proxy(ProxyOptions proxyOptions) |
Sets the proxy.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.readTimeout(Duration readTimeout) |
Sets the read timeout duration used when reading the server response.
|
OkHttpAsyncHttpClientBuilder |
OkHttpAsyncHttpClientBuilder.writeTimeout(Duration writeTimeout) |
Sets the writing timeout for a request to be sent.
|