Uses of Interface
io.netty.handler.codec.http.HttpContent
-
Packages that use HttpContent 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. -
-
Uses of HttpContent in io.netty.handler.codec.http
Subinterfaces of HttpContent in io.netty.handler.codec.http Modifier and Type Interface Description interface
FullHttpMessage
CombinesHttpMessage
andLastHttpContent
into one message.interface
FullHttpRequest
Combine theHttpRequest
andFullHttpMessage
, so the request is a complete HTTP request.interface
FullHttpResponse
Combination of aHttpResponse
andFullHttpMessage
.interface
LastHttpContent
The lastHttpContent
which has trailing headers.Classes in io.netty.handler.codec.http that implement HttpContent Modifier and Type Class Description (package private) class
ComposedLastHttpContent
class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.class
DefaultFullHttpResponse
Default implementation of aFullHttpResponse
.class
DefaultHttpContent
The defaultHttpContent
implementation.class
DefaultLastHttpContent
The defaultLastHttpContent
implementation.private static class
HttpObjectAggregator.AggregatedFullHttpMessage
private static class
HttpObjectAggregator.AggregatedFullHttpRequest
private static class
HttpObjectAggregator.AggregatedFullHttpResponse
Methods in io.netty.handler.codec.http that return HttpContent Modifier and Type Method Description HttpContent
DefaultHttpContent. copy()
HttpContent
HttpContent. copy()
HttpContent
DefaultHttpContent. duplicate()
HttpContent
HttpContent. duplicate()
private HttpContent
HttpObjectDecoder. invalidChunk(ByteBuf in, java.lang.Exception cause)
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
DefaultHttpContent. retain(int increment)
HttpContent
HttpContent. retain()
HttpContent
HttpContent. retain(int increment)
HttpContent
DefaultHttpContent. retainedDuplicate()
HttpContent
HttpContent. retainedDuplicate()
HttpContent
DefaultHttpContent. touch()
HttpContent
DefaultHttpContent. touch(java.lang.Object hint)
HttpContent
HttpContent. touch()
HttpContent
HttpContent. touch(java.lang.Object hint)
Methods in io.netty.handler.codec.http with parameters of type HttpContent Modifier and Type Method Description protected void
HttpObjectAggregator. aggregate(FullHttpMessage aggregated, HttpContent content)
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)
private void
HttpContentEncoder. encodeFullResponse(HttpResponse newRes, HttpContent content, java.util.List<java.lang.Object> out)
private void
HttpObjectEncoder. encodeHttpContent(ChannelHandlerContext ctx, HttpContent msg, java.util.List<java.lang.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 HttpContent Modifier and Type Class Description private static class
HttpPostRequestEncoder.WrappedFullHttpRequest
Fields in io.netty.handler.codec.http.multipart declared as HttpContent Modifier and Type Field Description private HttpContent
HttpPostRequestEncoder.WrappedFullHttpRequest. content
Methods in io.netty.handler.codec.http.multipart that return HttpContent Modifier and Type Method 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. lastChunk()
private HttpContent
HttpPostRequestEncoder. nextChunk()
Returns the next available HttpChunk.HttpContent
HttpPostRequestEncoder. readChunk(ByteBufAllocator allocator)
Returns the next available HttpChunk.HttpContent
HttpPostRequestEncoder. readChunk(ChannelHandlerContext ctx)
Deprecated.Methods in io.netty.handler.codec.http.multipart with parameters of type HttpContent Modifier and Type Method Description HttpPostMultipartRequestDecoder
HttpPostMultipartRequestDecoder. offer(HttpContent content)
Initialized the internals from a new chunkInterfaceHttpPostRequestDecoder
HttpPostRequestDecoder. offer(HttpContent content)
HttpPostStandardRequestDecoder
HttpPostStandardRequestDecoder. offer(HttpContent content)
Initialized the internals from a new chunkInterfaceHttpPostRequestDecoder
InterfaceHttpPostRequestDecoder. offer(HttpContent content)
Initialized the internals from a new chunkConstructors in io.netty.handler.codec.http.multipart with parameters of type HttpContent Constructor Description WrappedFullHttpRequest(HttpRequest request, HttpContent content)
-