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 class
HttpClientUpgradeHandler<C extends HttpContent<C>>
Client-side handler for handling an HTTP upgrade handshake to another protocol.interface
HttpContent<R extends HttpContent<R>>
An HTTP chunk which is used for HTTP chunked transfer-encoding.class
HttpObjectAggregator<C extends HttpContent<C>>
AChannelHandler
that aggregates anHttpMessage
and its followingHttpContent
s into a singleFullHttpRequest
orFullHttpResponse
(depending on if it used to handle requests or responses) with no followingHttpContent
s.class
HttpServerUpgradeHandler<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 interface
FullHttpMessage<R extends FullHttpMessage<R>>
CombinesHttpMessage
andLastHttpContent
into one message.interface
FullHttpRequest
Combine theHttpRequest
andFullHttpMessage
, so the request is a complete HTTP request.interface
FullHttpResponse
Combination of aHttpResponse
andFullHttpMessage
.interface
LastHttpContent<R extends LastHttpContent<R>>
The lastHttpContent
which has trailing headers.Classes in io.netty5.handler.codec.http that implement HttpContent Modifier and Type Class Description class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.class
DefaultFullHttpResponse
Default implementation of aFullHttpResponse
.class
DefaultHttpContent
The defaultHttpContent
implementation.class
DefaultLastHttpContent
The defaultLastHttpContent
implementation.class
EmptyLastHttpContent
Methods 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 void
HttpObjectAggregator. aggregate(BufferAllocator allocator, FullHttpMessage<?> aggregated, HttpContent<C> content)
protected boolean
HttpObjectAggregator. isLastContentMessage(HttpContent<C> msg)
protected int
HttpObjectAggregator. lengthForContent(HttpContent<C> msg)
-