Uses of Interface
io.netty5.handler.codec.http.HttpObject
-
Packages that use HttpObject Package Description io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of HttpObject in io.netty5.handler.codec.http
Subinterfaces of HttpObject 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
HttpContent<R extends HttpContent<R>>
An HTTP chunk which is used for HTTP chunked transfer-encoding.interface
HttpMessage
An interface that defines an HTTP message, providing common properties forHttpRequest
andHttpResponse
.interface
HttpRequest
An HTTP request.interface
HttpResponse
An HTTP response.interface
LastHttpContent<R extends LastHttpContent<R>>
The lastHttpContent
which has trailing headers.Classes in io.netty5.handler.codec.http that implement HttpObject Modifier and Type Class Description class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.class
DefaultFullHttpResponse
Default implementation of aFullHttpResponse
.class
DefaultHttpContent
The defaultHttpContent
implementation.class
DefaultHttpMessage
The defaultHttpMessage
implementation.class
DefaultHttpObject
class
DefaultHttpRequest
The defaultHttpRequest
implementation.class
DefaultHttpResponse
The defaultHttpResponse
implementation.class
DefaultLastHttpContent
The defaultLastHttpContent
implementation.class
EmptyLastHttpContent
Methods in io.netty5.handler.codec.http with parameters of type HttpObject Modifier and Type Method Description protected void
HttpClientUpgradeHandler. decode(ChannelHandlerContext ctx, HttpObject msg)
protected void
HttpContentDecoder. decodeAndClose(ChannelHandlerContext ctx, HttpObject msg)
protected void
HttpServerUpgradeHandler. decodeAndClose(ChannelHandlerContext ctx, HttpObject msg)
protected void
HttpContentEncoder. encodeAndClose(ChannelHandlerContext ctx, HttpObject msg, List<Object> out)
-
Uses of HttpObject in io.netty5.handler.codec.http2
Methods in io.netty5.handler.codec.http2 with parameters of type HttpObject Modifier and Type Method Description protected void
Http2StreamFrameToHttpObjectCodec. encodeAndClose(ChannelHandlerContext ctx, HttpObject obj, List<Object> out)
Encode from anHttpObject
to anHttp2StreamFrame
.
-