| Package | Description |
|---|---|
| io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
| 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
Combinate 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. |
| Modifier and Type | Method and Description |
|---|---|
protected FullHttpMessage |
HttpObjectAggregator.beginAggregation(HttpMessage start,
io.netty.buffer.ByteBuf content) |
FullHttpMessage |
FullHttpMessage.copy() |
FullHttpMessage |
FullHttpMessage.copy(io.netty.buffer.ByteBuf newContent)
Create a copy of this
FullHttpMessage with alternative content. |
FullHttpMessage |
FullHttpMessage.duplicate() |
FullHttpMessage |
FullHttpMessage.retain() |
FullHttpMessage |
FullHttpMessage.retain(int increment) |
FullHttpMessage |
FullHttpMessage.touch() |
FullHttpMessage |
FullHttpMessage.touch(Object hint) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
HttpObjectAggregator.aggregate(FullHttpMessage aggregated,
HttpContent content) |
protected void |
HttpObjectAggregator.finishAggregation(FullHttpMessage aggregated) |
| 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,
Map<Integer,FullHttpMessage> messageMap)
Creates a new instance with the specified parameters.
|
SpdyHttpDecoder(SpdyVersion version,
int maxContentLength,
Map<Integer,FullHttpMessage> messageMap,
boolean validateHeaders)
Creates a new instance with the specified parameters.
|
Copyright © 2008–2015 The Netty Project. All rights reserved.