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 . |
Modifier and Type | Class and Description |
---|---|
(package private) class |
ComposedLastHttpContent |
class |
DefaultFullHttpRequest
Default implementation of
FullHttpRequest . |
class |
DefaultFullHttpResponse
Default implementation of a
FullHttpResponse . |
class |
DefaultLastHttpContent
The default
LastHttpContent implementation. |
private static class |
HttpObjectAggregator.AggregatedFullHttpMessage |
private static class |
HttpObjectAggregator.AggregatedFullHttpRequest |
private static class |
HttpObjectAggregator.AggregatedFullHttpResponse |
Modifier and Type | Field and Description |
---|---|
static LastHttpContent |
LastHttpContent.EMPTY_LAST_CONTENT
The 'end of content' marker in chunked encoding.
|
private LastHttpContent |
HttpChunkedInput.lastHttpContent |
private LastHttpContent |
HttpObjectDecoder.trailer |
Modifier and Type | Method and Description |
---|---|
LastHttpContent |
DefaultLastHttpContent.copy() |
LastHttpContent |
LastHttpContent.copy() |
LastHttpContent |
ComposedLastHttpContent.copy() |
LastHttpContent |
DefaultLastHttpContent.duplicate() |
private LastHttpContent |
HttpObjectDecoder.readTrailingHeaders(ByteBuf buffer) |
LastHttpContent |
DefaultLastHttpContent.retain() |
LastHttpContent |
LastHttpContent.retain() |
LastHttpContent |
ComposedLastHttpContent.retain() |
LastHttpContent |
DefaultLastHttpContent.retain(int increment) |
LastHttpContent |
LastHttpContent.retain(int increment) |
LastHttpContent |
ComposedLastHttpContent.retain(int increment) |
Constructor and Description |
---|
HttpChunkedInput(ChunkedInput<ByteBuf> input,
LastHttpContent lastHttpContent)
Creates a new instance using the specified input.
|
Modifier and Type | Class and Description |
---|---|
private static class |
HttpPostRequestEncoder.WrappedFullHttpRequest |