| 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  | 
FullHttpMessage
Combines  
HttpMessage and LastHttpContent into one
 message. | 
interface  | 
FullHttpRequest
Combine the  
HttpRequest and FullHttpMessage, so the request is a complete HTTP
 request. | 
interface  | 
FullHttpResponse
Combination of a  
HttpResponse and FullHttpMessage. | 
interface  | 
HttpContent
An HTTP chunk which is used for HTTP chunked transfer-encoding. 
 | 
interface  | 
HttpMessage
An interface that defines a HTTP message, providing common properties for
  
HttpRequest and HttpResponse. | 
interface  | 
HttpRequest
An HTTP request. 
 | 
interface  | 
HttpResponse
An HTTP response. 
 | 
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  | 
DefaultHttpMessage
The default  
HttpMessage implementation. | 
class  | 
DefaultHttpObject  | 
class  | 
DefaultHttpRequest
The default  
HttpRequest implementation. | 
class  | 
DefaultHttpResponse
The default  
HttpResponse implementation. | 
class  | 
DefaultLastHttpContent
The default  
LastHttpContent implementation. | 
| Modifier and Type | Method and Description | 
|---|---|
protected void | 
HttpServerUpgradeHandler.decode(io.netty.channel.ChannelHandlerContext ctx,
      HttpObject msg,
      List<Object> out)  | 
protected void | 
HttpClientUpgradeHandler.decode(io.netty.channel.ChannelHandlerContext ctx,
      HttpObject msg,
      List<Object> out)  | 
protected void | 
HttpContentDecoder.decode(io.netty.channel.ChannelHandlerContext ctx,
      HttpObject msg,
      List<Object> out)  | 
protected void | 
HttpContentEncoder.encode(io.netty.channel.ChannelHandlerContext ctx,
      HttpObject msg,
      List<Object> out)  | 
protected boolean | 
HttpObjectAggregator.isAggregated(HttpObject msg)  | 
protected boolean | 
HttpObjectAggregator.isContentMessage(HttpObject msg)  | 
protected boolean | 
HttpObjectAggregator.isStartMessage(HttpObject msg)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected void | 
SpdyHttpEncoder.encode(io.netty.channel.ChannelHandlerContext ctx,
      HttpObject msg,
      List<Object> out)  | 
Copyright © 2008–2017 The Netty Project. All rights reserved.