Interface HttpServerHandler

  • All Superinterfaces:
    io.netty.channel.ChannelHandler, io.netty.channel.ChannelInboundHandler
    All Known Implementing Classes:
    HttpRequestContextHandler

    public interface HttpServerHandler
    extends io.netty.channel.ChannelInboundHandler
    An interface handles HTTP requests.
    Since:
    1.1
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface io.netty.channel.ChannelHandler

        io.netty.channel.ChannelHandler.Sharable
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static io.netty.channel.ChannelFutureListener READ_NEXT
      A ChannelFutureListener that calls Channel.read() of the Channel which is associated with the specified ChannelFuture.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean isSharable()
      Return true if the implementation is ChannelHandler.Sharable and so can be added to different ChannelPipelines.
      • Methods inherited from interface io.netty.channel.ChannelHandler

        handlerAdded, handlerRemoved
      • Methods inherited from interface io.netty.channel.ChannelInboundHandler

        channelActive, channelInactive, channelRead, channelReadComplete, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggered
    • Field Detail

      • READ_NEXT

        static final io.netty.channel.ChannelFutureListener READ_NEXT
        A ChannelFutureListener that calls Channel.read() of the Channel which is associated with the specified ChannelFuture.
    • Method Detail

      • isSharable

        boolean isSharable()
        Return true if the implementation is ChannelHandler.Sharable and so can be added to different ChannelPipelines.
        Returns:
        true if the implementation is ChannelHandler.Sharable