Uses of Interface
io.netty5.handler.codec.http.HttpContent
-
Packages that use HttpContent Package Description io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP. -
-
Uses of HttpContent in io.netty5.handler.codec.http
Classes in io.netty5.handler.codec.http with type parameters of type HttpContent Modifier and Type Class Description classHttpClientUpgradeHandler<C extends HttpContent<C>>Client-side handler for handling an HTTP upgrade handshake to another protocol.interfaceHttpContent<R extends HttpContent<R>>An HTTP chunk which is used for HTTP chunked transfer-encoding.classHttpObjectAggregator<C extends HttpContent<C>>AChannelHandlerthat aggregates anHttpMessageand its followingHttpContents into a singleFullHttpRequestorFullHttpResponse(depending on if it used to handle requests or responses) with no followingHttpContents.classHttpServerUpgradeHandler<C extends HttpContent<C>>A server-side handler that receives HTTP requests and optionally performs a protocol switch if the requested protocol is supported.Subinterfaces of HttpContent in io.netty5.handler.codec.http Modifier and Type Interface Description interfaceFullHttpMessage<R extends FullHttpMessage<R>>CombinesHttpMessageandLastHttpContentinto one message.interfaceFullHttpRequestCombine theHttpRequestandFullHttpMessage, so the request is a complete HTTP request.interfaceFullHttpResponseCombination of aHttpResponseandFullHttpMessage.interfaceLastHttpContent<R extends LastHttpContent<R>>The lastHttpContentwhich has trailing headers.Classes in io.netty5.handler.codec.http that implement HttpContent Modifier and Type Class Description classDefaultFullHttpRequestDefault implementation ofFullHttpRequest.classDefaultFullHttpResponseDefault implementation of aFullHttpResponse.classDefaultHttpContentThe defaultHttpContentimplementation.classDefaultLastHttpContentThe defaultLastHttpContentimplementation.classEmptyLastHttpContentMethods in io.netty5.handler.codec.http that return HttpContent Modifier and Type Method Description HttpContent<?>HttpChunkedInput. readChunk(BufferAllocator allocator)protected HttpContent<C>HttpObjectAggregator. tryContentMessage(Object msg)Methods in io.netty5.handler.codec.http with parameters of type HttpContent Modifier and Type Method Description protected voidHttpObjectAggregator. aggregate(BufferAllocator allocator, FullHttpMessage<?> aggregated, HttpContent<C> content)protected booleanHttpObjectAggregator. isLastContentMessage(HttpContent<C> msg)protected intHttpObjectAggregator. lengthForContent(HttpContent<C> msg)
-