Uses of Interface
software.amazon.awssdk.http.nio.netty.SdkEventLoopGroup.Builder
-
Packages that use SdkEventLoopGroup.Builder Package Description software.amazon.awssdk.http.nio.netty -
-
Uses of SdkEventLoopGroup.Builder in software.amazon.awssdk.http.nio.netty
Methods in software.amazon.awssdk.http.nio.netty that return SdkEventLoopGroup.Builder Modifier and Type Method Description static SdkEventLoopGroup.Builder
SdkEventLoopGroup. builder()
SdkEventLoopGroup.Builder
SdkEventLoopGroup.Builder. channelFactory(io.netty.channel.ChannelFactory<? extends io.netty.channel.Channel> channelFactory)
ChannelFactory
to create socket channels used by theEventLoopGroup
.SdkEventLoopGroup.Builder
SdkEventLoopGroup.Builder. datagramChannelFactory(io.netty.channel.ChannelFactory<? extends io.netty.channel.socket.DatagramChannel> datagramChannelFactory)
ChannelFactory
to create datagram channels used by theEventLoopGroup
.SdkEventLoopGroup.Builder
SdkEventLoopGroup.Builder. numberOfThreads(Integer numberOfThreads)
Number of threads to use for theEventLoopGroup
.SdkEventLoopGroup.Builder
SdkEventLoopGroup.Builder. threadFactory(ThreadFactory threadFactory)
ThreadFactory
to create threads used by theEventLoopGroup
.Methods in software.amazon.awssdk.http.nio.netty with parameters of type SdkEventLoopGroup.Builder Modifier and Type Method Description NettyNioAsyncHttpClient.Builder
NettyNioAsyncHttpClient.Builder. eventLoopGroupBuilder(SdkEventLoopGroup.Builder eventLoopGroupBuilder)
Sets theSdkEventLoopGroup.Builder
which will be used to create theSdkEventLoopGroup
for the Netty HTTP client.
-