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
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 |
LastHttpContent
The last
HttpContent which has trailing headers. |
Modifier and Type | Class and Description |
---|---|
(package private) class |
ComposedLastHttpContent |
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. |
private static class |
HttpObjectAggregator.AggregatedFullHttpMessage |
private static class |
HttpObjectAggregator.AggregatedFullHttpRequest |
private static class |
HttpObjectAggregator.AggregatedFullHttpResponse |
Modifier and Type | Method and Description |
---|---|
HttpContent |
HttpContent.copy() |
HttpContent |
DefaultHttpContent.copy() |
HttpContent |
HttpContent.duplicate() |
HttpContent |
ComposedLastHttpContent.duplicate() |
HttpContent |
DefaultHttpContent.duplicate() |
private HttpContent |
HttpObjectDecoder.invalidChunk(ByteBuf in,
java.lang.Exception cause) |
HttpContent |
HttpChunkedInput.readChunk(ChannelHandlerContext ctx) |
HttpContent |
HttpContent.retain() |
HttpContent |
DefaultHttpContent.retain() |
HttpContent |
HttpContent.retain(int increment) |
HttpContent |
DefaultHttpContent.retain(int increment) |
Modifier and Type | Method and Description |
---|---|
private void |
HttpContentDecoder.decodeContent(HttpContent c,
java.util.List<java.lang.Object> out) |
private boolean |
HttpContentEncoder.encodeContent(HttpContent c,
java.util.List<java.lang.Object> out) |
Modifier and Type | Class and Description |
---|---|
private static class |
HttpPostRequestEncoder.WrappedFullHttpRequest |
Modifier and Type | Field and Description |
---|---|
private HttpContent |
HttpPostRequestEncoder.WrappedFullHttpRequest.content |
Modifier and Type | Method and Description |
---|---|
private HttpContent |
HttpPostRequestEncoder.encodeNextChunkMultipart(int sizeleft)
From the current context (currentBuffer and currentData), returns the next HttpChunk (if possible) trying to get
sizeleft bytes more into the currentBuffer.
|
private HttpContent |
HttpPostRequestEncoder.encodeNextChunkUrlEncoded(int sizeleft)
From the current context (currentBuffer and currentData), returns the next HttpChunk (if possible) trying to get
sizeleft bytes more into the currentBuffer.
|
private HttpContent |
HttpPostRequestEncoder.nextChunk()
Returns the next available HttpChunk.
|
HttpContent |
HttpPostRequestEncoder.readChunk(ChannelHandlerContext ctx)
Returns the next available HttpChunk.
|
Modifier and Type | Method and Description |
---|---|
InterfaceHttpPostRequestDecoder |
InterfaceHttpPostRequestDecoder.offer(HttpContent content)
Initialized the internals from a new chunk
|
HttpPostMultipartRequestDecoder |
HttpPostMultipartRequestDecoder.offer(HttpContent content)
Initialized the internals from a new chunk
|
HttpPostStandardRequestDecoder |
HttpPostStandardRequestDecoder.offer(HttpContent content)
Initialized the internals from a new chunk
|
InterfaceHttpPostRequestDecoder |
HttpPostRequestDecoder.offer(HttpContent content) |
Constructor and Description |
---|
WrappedFullHttpRequest(HttpRequest request,
HttpContent content) |