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
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 . |
Modifier and Type | Method and Description |
---|---|
FullHttpMessage |
FullHttpMessage.copy() |
FullHttpMessage |
FullHttpMessage.retain() |
FullHttpMessage |
FullHttpMessage.retain(int increment) |
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.
|
Copyright © 2008–2018 The Netty Project. All rights reserved.