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.
|
io.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
Modifier and Type | Interface and Description |
---|---|
interface |
FullHttpRequest
Combine the
HttpRequest and FullHttpMessage , so the request is a complete HTTP
request. |
interface |
FullHttpResponse
Combination of a
HttpResponse and FullHttpMessage . |
Modifier and Type | Class and Description |
---|---|
class |
DefaultFullHttpRequest
Default implementation of
FullHttpRequest . |
class |
DefaultFullHttpResponse
Default implementation of a
FullHttpResponse . |
private static class |
HttpObjectAggregator.AggregatedFullHttpMessage |
private static class |
HttpObjectAggregator.AggregatedFullHttpRequest |
private static class |
HttpObjectAggregator.AggregatedFullHttpResponse |
Modifier and Type | Method and Description |
---|---|
abstract FullHttpMessage |
HttpObjectAggregator.AggregatedFullHttpMessage.copy() |
FullHttpMessage |
FullHttpMessage.copy() |
abstract FullHttpMessage |
HttpObjectAggregator.AggregatedFullHttpMessage.duplicate() |
FullHttpMessage |
HttpObjectAggregator.AggregatedFullHttpMessage.retain() |
FullHttpMessage |
FullHttpMessage.retain() |
FullHttpMessage |
HttpObjectAggregator.AggregatedFullHttpMessage.retain(int increment) |
FullHttpMessage |
FullHttpMessage.retain(int increment) |
FullHttpMessage |
HttpObjectAggregator.AggregatedFullHttpMessage.setProtocolVersion(HttpVersion version) |
private static FullHttpMessage |
HttpObjectAggregator.toFullMessage(HttpMessage msg) |
Modifier and Type | Method and Description |
---|---|
private static void |
HttpMessageUtil.appendFullCommon(java.lang.StringBuilder buf,
FullHttpMessage msg) |
Modifier and Type | Class and Description |
---|---|
private static class |
HttpPostRequestEncoder.WrappedFullHttpRequest |
Modifier and Type | Field and Description |
---|---|
private java.util.Map<java.lang.Integer,FullHttpMessage> |
SpdyHttpDecoder.messageMap |
Modifier and Type | Method and Description |
---|---|
protected FullHttpMessage |
SpdyHttpDecoder.getMessage(int streamId) |
protected FullHttpMessage |
SpdyHttpDecoder.putMessage(int streamId,
FullHttpMessage message) |
protected FullHttpMessage |
SpdyHttpDecoder.removeMessage(int streamId) |
Modifier and Type | Method and Description |
---|---|
protected FullHttpMessage |
SpdyHttpDecoder.putMessage(int streamId,
FullHttpMessage message) |
Constructor and Description |
---|
SpdyHttpDecoder(SpdyVersion version,
int maxContentLength,
java.util.Map<java.lang.Integer,FullHttpMessage> messageMap)
Creates a new instance with the specified parameters.
|
SpdyHttpDecoder(SpdyVersion version,
int maxContentLength,
java.util.Map<java.lang.Integer,FullHttpMessage> messageMap,
boolean validateHeaders)
Creates a new instance with the specified parameters.
|