Uses of Interface
io.netty.handler.codec.http.HttpContent
Packages that use HttpContent
Package
Description
Encoder, decoder and their related message types for HTTP.
HTTP multipart support.
-
Uses of HttpContent in io.netty.handler.codec.http
Subinterfaces of HttpContent in io.netty.handler.codec.httpModifier and TypeInterfaceDescriptioninterface
CombinesHttpMessage
andLastHttpContent
into one message.interface
Combine theHttpRequest
andFullHttpMessage
, so the request is a complete HTTP request.interface
Combination of aHttpResponse
andFullHttpMessage
.interface
The lastHttpContent
which has trailing headers.Classes in io.netty.handler.codec.http that implement HttpContentModifier and TypeClassDescription(package private) final class
class
Default implementation ofFullHttpRequest
.class
Default implementation of aFullHttpResponse
.class
The defaultHttpContent
implementation.class
The defaultLastHttpContent
implementation.private static class
private static final class
private static final class
Methods in io.netty.handler.codec.http that return HttpContentModifier and TypeMethodDescriptionDefaultHttpContent.copy()
HttpContent.copy()
DefaultHttpContent.duplicate()
HttpContent.duplicate()
private HttpContent
HttpObjectDecoder.invalidChunk
(ByteBuf in, Exception cause) HttpChunkedInput.readChunk
(ByteBufAllocator allocator) HttpChunkedInput.readChunk
(ChannelHandlerContext ctx) Deprecated.DefaultHttpContent.retain()
DefaultHttpContent.retain
(int increment) HttpContent.retain()
HttpContent.retain
(int increment) DefaultHttpContent.retainedDuplicate()
HttpContent.retainedDuplicate()
DefaultHttpContent.touch()
HttpContent.touch()
Methods in io.netty.handler.codec.http with parameters of type HttpContentModifier and TypeMethodDescriptionprotected void
HttpObjectAggregator.aggregate
(FullHttpMessage aggregated, HttpContent content) private void
HttpContentDecoder.decodeContent
(HttpContent c, List<Object> out) private boolean
HttpContentEncoder.encodeContent
(HttpContent c, List<Object> out) private void
HttpContentEncoder.encodeFullResponse
(HttpResponse newRes, HttpContent content, List<Object> out) private void
HttpObjectEncoder.encodeHttpContent
(ChannelHandlerContext ctx, HttpContent msg, List<Object> out) protected boolean
HttpObjectAggregator.isLastContentMessage
(HttpContent msg) -
Uses of HttpContent in io.netty.handler.codec.http.multipart
Classes in io.netty.handler.codec.http.multipart that implement HttpContentModifier and TypeClassDescriptionprivate static final class
Fields in io.netty.handler.codec.http.multipart declared as HttpContentModifier and TypeFieldDescriptionprivate final HttpContent
HttpPostRequestEncoder.WrappedFullHttpRequest.content
Methods in io.netty.handler.codec.http.multipart that return HttpContentModifier and TypeMethodDescriptionprivate 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.lastChunk()
private HttpContent
HttpPostRequestEncoder.nextChunk()
Returns the next available HttpChunk.HttpPostRequestEncoder.readChunk
(ByteBufAllocator allocator) Returns the next available HttpChunk.HttpPostRequestEncoder.readChunk
(ChannelHandlerContext ctx) Deprecated.Methods in io.netty.handler.codec.http.multipart with parameters of type HttpContentModifier and TypeMethodDescriptionHttpPostMultipartRequestDecoder.offer
(HttpContent content) Initialized the internals from a new chunkHttpPostRequestDecoder.offer
(HttpContent content) HttpPostStandardRequestDecoder.offer
(HttpContent content) Initialized the internals from a new chunkInterfaceHttpPostRequestDecoder.offer
(HttpContent content) Initialized the internals from a new chunkConstructors in io.netty.handler.codec.http.multipart with parameters of type HttpContentModifierConstructorDescriptionprivate
WrappedFullHttpRequest
(HttpRequest request, HttpContent content)