Interface ChannelHandlerFactory

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      io.netty.channel.ChannelHandler createHandler()
      Creates a new channel handler.
      java.lang.String getDescription()
      Returns a human readable description of the channel handler plugin.
      java.lang.String getName()
      Returns the name under which this plugin can be loaded.
    • Method Detail

      • getName

        java.lang.String getName()
        Returns the name under which this plugin can be loaded.
      • getDescription

        java.lang.String getDescription()
        Returns a human readable description of the channel handler plugin.
      • createHandler

        io.netty.channel.ChannelHandler createHandler()
        Creates a new channel handler. The channel handler is only valid for a single connection.
        Returns:
        the new channel handler instance