Uses of Interface
io.netty.handler.codec.http.HttpObject
-
Packages that use HttpObject Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol. -
-
Uses of HttpObject in io.netty.handler.codec.http
Subinterfaces of HttpObject in io.netty.handler.codec.http Modifier and Type Interface Description interfaceFullHttpMessageCombinesHttpMessageandLastHttpContentinto one message.interfaceFullHttpRequestCombine theHttpRequestandFullHttpMessage, so the request is a complete HTTP request.interfaceFullHttpResponseCombination of aHttpResponseandFullHttpMessage.interfaceHttpContentAn HTTP chunk which is used for HTTP chunked transfer-encoding.interfaceHttpMessageAn interface that defines an HTTP message, providing common properties forHttpRequestandHttpResponse.interfaceHttpRequestAn HTTP request.interfaceHttpResponseAn HTTP response.interfaceLastHttpContentThe lastHttpContentwhich has trailing headers.Classes in io.netty.handler.codec.http that implement HttpObject Modifier and Type Class Description classDefaultFullHttpRequestDefault implementation ofFullHttpRequest.classDefaultFullHttpResponseDefault implementation of aFullHttpResponse.classDefaultHttpContentThe defaultHttpContentimplementation.classDefaultHttpMessageThe defaultHttpMessageimplementation.classDefaultHttpObjectclassDefaultHttpRequestThe defaultHttpRequestimplementation.classDefaultHttpResponseThe defaultHttpResponseimplementation.classDefaultLastHttpContentThe defaultLastHttpContentimplementation.Methods in io.netty.handler.codec.http with parameters of type HttpObject Modifier and Type Method Description protected voidHttpClientUpgradeHandler. decode(ChannelHandlerContext ctx, HttpObject msg, java.util.List<java.lang.Object> out)protected voidHttpContentDecoder. decode(ChannelHandlerContext ctx, HttpObject msg, java.util.List<java.lang.Object> out)protected voidHttpServerUpgradeHandler. decode(ChannelHandlerContext ctx, HttpObject msg, java.util.List<java.lang.Object> out)protected voidHttpContentEncoder. encode(ChannelHandlerContext ctx, HttpObject msg, java.util.List<java.lang.Object> out)protected booleanHttpObjectAggregator. isAggregated(HttpObject msg)protected booleanHttpObjectAggregator. isContentMessage(HttpObject msg)protected booleanHttpObjectAggregator. isStartMessage(HttpObject msg) -
Uses of HttpObject in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 with parameters of type HttpObject Modifier and Type Method Description protected voidHttp2StreamFrameToHttpObjectCodec. encode(ChannelHandlerContext ctx, HttpObject obj, java.util.List<java.lang.Object> out)Encode from anHttpObjectto anHttp2StreamFrame. -
Uses of HttpObject in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy with parameters of type HttpObject Modifier and Type Method Description protected voidSpdyHttpEncoder. encode(ChannelHandlerContext ctx, HttpObject msg, java.util.List<java.lang.Object> out)
-