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 |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
HttpContent |
DefaultHttpContent.copy() |
HttpContent |
HttpContent.copy() |
HttpContent |
DefaultHttpContent.duplicate() |
HttpContent |
HttpContent.duplicate() |
HttpContent |
HttpChunkedInput.readChunk(ByteBufAllocator allocator) |
HttpContent |
HttpChunkedInput.readChunk(ChannelHandlerContext ctx)
Deprecated.
|
HttpContent |
DefaultHttpContent.replace(ByteBuf content) |
HttpContent |
HttpContent.replace(ByteBuf content) |
HttpContent |
DefaultHttpContent.retain() |
HttpContent |
HttpContent.retain() |
HttpContent |
DefaultHttpContent.retain(int increment) |
HttpContent |
HttpContent.retain(int increment) |
HttpContent |
DefaultHttpContent.retainedDuplicate() |
HttpContent |
HttpContent.retainedDuplicate() |
HttpContent |
DefaultHttpContent.touch() |
HttpContent |
HttpContent.touch() |
HttpContent |
DefaultHttpContent.touch(Object hint) |
HttpContent |
HttpContent.touch(Object hint) |
Modifier and Type | Method and Description |
---|---|
protected void |
HttpObjectAggregator.aggregate(FullHttpMessage aggregated,
HttpContent content) |
protected boolean |
HttpObjectAggregator.isLastContentMessage(HttpContent msg) |
Modifier and Type | Method and Description |
---|---|
HttpContent |
HttpPostRequestEncoder.readChunk(ByteBufAllocator allocator)
Returns the next available HttpChunk.
|
HttpContent |
HttpPostRequestEncoder.readChunk(ChannelHandlerContext ctx)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
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 |
InterfaceHttpPostRequestDecoder.offer(HttpContent content)
Initialized the internals from a new chunk
|
InterfaceHttpPostRequestDecoder |
HttpPostRequestDecoder.offer(HttpContent content) |
Copyright © 2008–2024 The Netty Project. All rights reserved.