| 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.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
FullHttpMessage
Combines
FullHttpMessage and LastHttpContent into one
message. |
interface |
FullHttpRequest
Combinate the
HttpRequest and FullHttpMessage, so the request is a complete HTTP
request. |
interface |
FullHttpResponse
Combination of a
HttpResponse and FullHttpMessage. |
interface |
LastHttpContent
The last
HttpContent which has trailing headers. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultFullHttpRequest
Default implementation of
FullHttpRequest. |
class |
DefaultFullHttpResponse
Default implementation of a
FullHttpResponse. |
class |
DefaultHttpContent
The default
HttpContent implementation. |
class |
DefaultLastHttpContent
The default
LastHttpContent implementation. |
| Modifier and Type | Method and Description |
|---|---|
HttpContent |
HttpContent.copy() |
HttpContent |
DefaultHttpContent.copy() |
HttpContent |
HttpContent.retain() |
HttpContent |
DefaultHttpContent.retain() |
HttpContent |
HttpContent.retain(int increment) |
HttpContent |
DefaultHttpContent.retain(int increment) |
| Modifier and Type | Method and Description |
|---|---|
protected HttpContentEncoder.Result |
HttpContentCompressor.beginEncode(HttpMessage header,
HttpContent msg,
String acceptEncoding) |
protected abstract HttpContentEncoder.Result |
HttpContentEncoder.beginEncode(HttpMessage header,
HttpContent msg,
String acceptEncoding)
Prepare to encode the HTTP message content.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HttpPostRequestDecoder.offer(HttpContent content)
Initialized the internals from a new chunk
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
HttpPostRequestEncoder.readChunk(io.netty.buffer.MessageBuf<HttpContent> buffer)
Returns the next available HttpChunk.
|
Copyright © 2008-2013 The Netty Project. All Rights Reserved.