Class ChannelResolver


  • public final class ChannelResolver
    extends Object
    • Method Detail

      • resolveSocketChannelFactory

        public static io.netty.channel.ChannelFactory<? extends io.netty.channel.Channel> resolveSocketChannelFactory​(io.netty.channel.EventLoopGroup eventLoopGroup)
        Attempts to determine the ChannelFactory class that corresponds to the given event loop group.
        Parameters:
        eventLoopGroup - the event loop group to determine the ChannelFactory 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 the ChannelFactory class for datagram channels that corresponds to the given event loop group.
        Parameters:
        eventLoopGroup - the event loop group to determine the ChannelFactory for
        Returns:
        A ChannelFactory instance for the given event loop group.