Class ChannelResolver
java.lang.Object
software.amazon.awssdk.http.nio.netty.internal.utils.ChannelResolver
- 
Method Summary
Modifier and TypeMethodDescriptionstatic io.netty.channel.ChannelFactory<? extends io.netty.channel.socket.DatagramChannel> resolveDatagramChannelFactory(io.netty.channel.EventLoopGroup eventLoopGroup) Attempts to determine theChannelFactoryclass for datagram channels that corresponds to the given event loop group.static io.netty.channel.ChannelFactory<? extends io.netty.channel.Channel> resolveSocketChannelFactory(io.netty.channel.EventLoopGroup eventLoopGroup) Attempts to determine theChannelFactoryclass that corresponds to the given event loop group. 
- 
Method Details
- 
resolveSocketChannelFactory
public static io.netty.channel.ChannelFactory<? extends io.netty.channel.Channel> resolveSocketChannelFactory(io.netty.channel.EventLoopGroup eventLoopGroup) Attempts to determine theChannelFactoryclass that corresponds to the given event loop group.- Parameters:
 eventLoopGroup- the event loop group to determine theChannelFactoryfor- Returns:
 - A 
ChannelFactoryinstance for the given event loop group. 
 - 
resolveDatagramChannelFactory
public static io.netty.channel.ChannelFactory<? extends io.netty.channel.socket.DatagramChannel> resolveDatagramChannelFactory(io.netty.channel.EventLoopGroup eventLoopGroup) Attempts to determine theChannelFactoryclass for datagram channels that corresponds to the given event loop group.- Parameters:
 eventLoopGroup- the event loop group to determine theChannelFactoryfor- Returns:
 - A 
ChannelFactoryinstance for the given event loop group. 
 
 -