接口 | 说明 |
---|---|
Cookie | 已过时
Use
Cookie instead. |
FullHttpMessage |
Combines
HttpMessage and LastHttpContent into one
message. |
FullHttpRequest |
Combine the
HttpRequest and FullHttpMessage , so the request is a complete HTTP
request. |
FullHttpResponse |
Combination of a
HttpResponse and FullHttpMessage . |
HttpContent |
An HTTP chunk which is used for HTTP chunked transfer-encoding.
|
HttpMessage |
An interface that defines a HTTP message, providing common properties for
HttpRequest and HttpResponse . |
HttpObject | |
HttpRequest |
An HTTP request.
|
HttpResponse |
An HTTP response.
|
LastHttpContent |
The last
HttpContent which has trailing headers. |
类 | 说明 |
---|---|
ClientCookieEncoder | 已过时
Use
ClientCookieEncoder instead. |
CookieDecoder | 已过时
Use
ClientCookieDecoder
or ServerCookieDecoder instead. |
DefaultCookie | 已过时
Use
DefaultCookie instead. |
DefaultFullHttpRequest |
Default implementation of
FullHttpRequest . |
DefaultFullHttpResponse |
Default implementation of a
FullHttpResponse . |
DefaultHttpContent |
The default
HttpContent implementation. |
DefaultHttpHeaders | |
DefaultHttpMessage |
The default
HttpMessage implementation. |
DefaultHttpObject | |
DefaultHttpRequest |
The default
HttpRequest implementation. |
DefaultHttpResponse |
The default
HttpResponse implementation. |
DefaultLastHttpContent |
The default
LastHttpContent implementation. |
HttpChunkedInput |
A
ChunkedInput that fetches data chunk by chunk for use with HTTP chunked transfers. |
HttpClientCodec |
A combination of
HttpRequestEncoder and HttpResponseDecoder
which enables easier client side HTTP implementation. |
HttpConstants | |
HttpContentCompressor |
Compresses an
HttpMessage and an HttpContent in gzip or
deflate encoding while respecting the "Accept-Encoding" header. |
HttpContentDecoder |
Decodes the content of the received
HttpRequest and HttpContent . |
HttpContentDecompressor | |
HttpContentEncoder |
Encodes the content of the outbound
HttpResponse and HttpContent . |
HttpContentEncoder.Result | |
HttpExpectationFailedEvent |
A user event designed to communicate that a expectation has failed and there should be no expectation that a
body will follow.
|
HttpHeaderDateFormat |
This DateFormat decodes 3 formats of
Date , but only encodes the one,
the first:
Sun, 06 Nov 1994 08:49:37 GMT: standard specification, the only one with
valid generation
Sun, 06 Nov 1994 08:49:37 GMT: obsolete specification
Sun Nov 6 08:49:37 1994: obsolete specification
|
HttpHeaders |
Provides the constants for the standard HTTP header names and values and
commonly used utility methods that accesses an
HttpMessage . |
HttpHeaders.Names |
Standard HTTP header names.
|
HttpHeaders.Values |
Standard HTTP header values.
|
HttpMethod | |
HttpObjectAggregator |
A
ChannelHandler that aggregates an HttpMessage
and its following HttpContent s into a single FullHttpRequest
or FullHttpResponse (depending on if it used to handle requests or responses)
with no following HttpContent s. |
HttpObjectDecoder | |
HttpObjectEncoder<H extends HttpMessage> | |
HttpRequestDecoder | |
HttpRequestEncoder | |
HttpResponseDecoder | |
HttpResponseEncoder | |
HttpResponseStatus | |
HttpServerCodec |
A combination of
HttpRequestDecoder and HttpResponseEncoder
which enables easier server side HTTP implementation. |
HttpServerKeepAliveHandler |
HttpServerKeepAliveHandler helps close persistent connections when appropriate.
|
HttpUtil |
Utility methods useful in the HTTP context.
|
HttpVersion | |
QueryStringDecoder |
Splits an HTTP query string into a path string and key-value parameter pairs.
|
QueryStringEncoder |
Creates an URL-encoded URI from a path string and key-value parameter pairs.
|
ServerCookieEncoder | 已过时
Use
ServerCookieEncoder instead |