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 theChannelFactory
class 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 theChannelFactory
class 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 theChannelFactory
class that corresponds to the given event loop group.- Parameters:
eventLoopGroup
- the event loop group to determine theChannelFactory
for- Returns:
- A
ChannelFactory
instance 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 theChannelFactory
class for datagram channels that corresponds to the given event loop group.- Parameters:
eventLoopGroup
- the event loop group to determine theChannelFactory
for- Returns:
- A
ChannelFactory
instance for the given event loop group.
-