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.http.multipart HTTP multipart support.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 (package private) classComposedLastHttpContentclassDefaultFullHttpRequestDefault implementation ofFullHttpRequest.classDefaultFullHttpResponseDefault implementation of aFullHttpResponse.classDefaultHttpContentThe defaultHttpContentimplementation.classDefaultHttpMessageThe defaultHttpMessageimplementation.classDefaultHttpObjectclassDefaultHttpRequestThe defaultHttpRequestimplementation.classDefaultHttpResponseThe defaultHttpResponseimplementation.classDefaultLastHttpContentThe defaultLastHttpContentimplementation.private static classHttpObjectAggregator.AggregatedFullHttpMessageprivate static classHttpObjectAggregator.AggregatedFullHttpRequestprivate static classHttpObjectAggregator.AggregatedFullHttpResponseMethods 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)private static voidHttpContentEncoder. ensureContent(HttpObject msg)private static voidHttpContentEncoder. ensureHeaders(HttpObject msg)protected booleanHttpObjectAggregator. isAggregated(HttpObject msg)protected booleanHttpObjectAggregator. isContentMessage(HttpObject msg)protected booleanHttpObjectAggregator. isStartMessage(HttpObject msg)private static booleanHttpServerUpgradeHandler. isUpgradeRequest(HttpObject msg)Determines whether or not the message is an HTTP upgrade request. -
Uses of HttpObject in io.netty.handler.codec.http.multipart
Classes in io.netty.handler.codec.http.multipart that implement HttpObject Modifier and Type Class Description private static classHttpPostRequestEncoder.WrappedFullHttpRequestprivate static classHttpPostRequestEncoder.WrappedHttpRequest -
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)
-