Uses of Interface
org.asynchttpclient.AsyncHttpClientConfig
-
-
Uses of AsyncHttpClientConfig in org.asynchttpclient
Classes in org.asynchttpclient that implement AsyncHttpClientConfig Modifier and Type Class Description class
DefaultAsyncHttpClientConfig
Configuration class to use with aAsyncHttpClient
.Methods in org.asynchttpclient that return AsyncHttpClientConfig Modifier and Type Method Description AsyncHttpClientConfig
AsyncHttpClient. getConfig()
Return the config associated to this client.AsyncHttpClientConfig
DefaultAsyncHttpClient. getConfig()
Methods in org.asynchttpclient with parameters of type AsyncHttpClientConfig Modifier and Type Method Description static AsyncHttpClient
Dsl. asyncHttpClient(AsyncHttpClientConfig config)
default void
SslEngineFactory. init(AsyncHttpClientConfig config)
Perform any necessary one-time configuration.SSLEngine
SslEngineFactory. newSslEngine(AsyncHttpClientConfig config, String peerHost, int peerPort)
Creates a newSSLEngine
.Constructors in org.asynchttpclient with parameters of type AsyncHttpClientConfig Constructor Description Builder(AsyncHttpClientConfig config)
DefaultAsyncHttpClient(AsyncHttpClientConfig config)
Create a new HTTP Asynchronous Client using the specifiedDefaultAsyncHttpClientConfig
configuration. -
Uses of AsyncHttpClientConfig in org.asynchttpclient.netty.channel
Methods in org.asynchttpclient.netty.channel with parameters of type AsyncHttpClientConfig Modifier and Type Method Description ConnectionSemaphore
ConnectionSemaphoreFactory. newConnectionSemaphore(AsyncHttpClientConfig config)
ConnectionSemaphore
DefaultConnectionSemaphoreFactory. newConnectionSemaphore(AsyncHttpClientConfig config)
Constructors in org.asynchttpclient.netty.channel with parameters of type AsyncHttpClientConfig Constructor Description ChannelManager(AsyncHttpClientConfig config, io.netty.util.Timer nettyTimer)
DefaultChannelPool(AsyncHttpClientConfig config, io.netty.util.Timer hashedWheelTimer)
-
Uses of AsyncHttpClientConfig in org.asynchttpclient.netty.handler
Fields in org.asynchttpclient.netty.handler declared as AsyncHttpClientConfig Modifier and Type Field Description protected AsyncHttpClientConfig
AsyncHttpClientHandler. config
Constructors in org.asynchttpclient.netty.handler with parameters of type AsyncHttpClientConfig Constructor Description HttpHandler(AsyncHttpClientConfig config, ChannelManager channelManager, NettyRequestSender requestSender)
WebSocketHandler(AsyncHttpClientConfig config, ChannelManager channelManager, NettyRequestSender requestSender)
-
Uses of AsyncHttpClientConfig in org.asynchttpclient.netty.handler.intercept
Constructors in org.asynchttpclient.netty.handler.intercept with parameters of type AsyncHttpClientConfig Constructor Description Interceptors(AsyncHttpClientConfig config, ChannelManager channelManager, NettyRequestSender requestSender)
-
Uses of AsyncHttpClientConfig in org.asynchttpclient.netty.request
Constructors in org.asynchttpclient.netty.request with parameters of type AsyncHttpClientConfig Constructor Description NettyRequestSender(AsyncHttpClientConfig config, ChannelManager channelManager, io.netty.util.Timer nettyTimer, AsyncHttpClientState clientState)
-
Uses of AsyncHttpClientConfig in org.asynchttpclient.netty.request.body
Constructors in org.asynchttpclient.netty.request.body with parameters of type AsyncHttpClientConfig Constructor Description NettyBodyBody(Body body, AsyncHttpClientConfig config)
NettyFileBody(File file, long offset, long length, AsyncHttpClientConfig config)
NettyFileBody(File file, AsyncHttpClientConfig config)
NettyMultipartBody(List<Part> parts, io.netty.handler.codec.http.HttpHeaders headers, AsyncHttpClientConfig config)
-
Uses of AsyncHttpClientConfig in org.asynchttpclient.netty.ssl
Methods in org.asynchttpclient.netty.ssl with parameters of type AsyncHttpClientConfig Modifier and Type Method Description protected void
SslEngineFactoryBase. configureSslEngine(SSLEngine sslEngine, AsyncHttpClientConfig config)
void
DefaultSslEngineFactory. init(AsyncHttpClientConfig config)
SSLEngine
DefaultSslEngineFactory. newSslEngine(AsyncHttpClientConfig config, String peerHost, int peerPort)
SSLEngine
JsseSslEngineFactory. newSslEngine(AsyncHttpClientConfig config, String peerHost, int peerPort)
-
Uses of AsyncHttpClientConfig in org.asynchttpclient.netty.timeout
Constructors in org.asynchttpclient.netty.timeout with parameters of type AsyncHttpClientConfig Constructor Description TimeoutsHolder(io.netty.util.Timer nettyTimer, NettyResponseFuture<?> nettyResponseFuture, NettyRequestSender requestSender, AsyncHttpClientConfig config, InetSocketAddress originalRemoteAddress)
-
Uses of AsyncHttpClientConfig in org.asynchttpclient.util
Methods in org.asynchttpclient.util with parameters of type AsyncHttpClientConfig Modifier and Type Method Description static boolean
HttpUtils. followRedirect(AsyncHttpClientConfig config, Request request)
static @Nullable ProxyServer
ProxyUtils. getProxyServer(AsyncHttpClientConfig config, Request request)
-