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 class
DefaultFullHttpRequest
Default implementation ofFullHttpRequest
.class
DefaultFullHttpResponse
Default implementation of aFullHttpResponse
.class
DefaultHttpContent
The defaultHttpContent
implementation.class
DefaultLastHttpContent
The defaultLastHttpContent
implementation.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()
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)
protected boolean
HttpObjectAggregator. isLastContentMessage(HttpContent msg)
-
Uses of HttpContent in io.netty.handler.codec.http.multipart
Methods in io.netty.handler.codec.http.multipart that return HttpContent Modifier and Type Method Description 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 chunk
-