Package io.netty.handler.codec.http
Interface HttpContent
-
- All Superinterfaces:
ByteBufHolder
,DecoderResultProvider
,HttpObject
,ReferenceCounted
- All Known Subinterfaces:
FullHttpMessage
,FullHttpRequest
,FullHttpResponse
,LastHttpContent
- All Known Implementing Classes:
DefaultFullHttpRequest
,DefaultFullHttpResponse
,DefaultHttpContent
,DefaultLastHttpContent
public interface HttpContent extends HttpObject, ByteBufHolder
An HTTP chunk which is used for HTTP chunked transfer-encoding.HttpObjectDecoder
generatesHttpContent
afterHttpMessage
when the content is large or the encoding of the content is 'chunked. If you prefer not to receiveHttpContent
in your handler, placeHttpObjectAggregator
afterHttpObjectDecoder
in theChannelPipeline
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpContent
copy()
Creates a deep copy of thisByteBufHolder
.HttpContent
duplicate()
Duplicates thisByteBufHolder
.HttpContent
replace(ByteBuf content)
Returns a newByteBufHolder
which contains the specifiedcontent
.HttpContent
retain()
Increases the reference count by1
.HttpContent
retain(int increment)
Increases the reference count by the specifiedincrement
.HttpContent
retainedDuplicate()
Duplicates thisByteBufHolder
.HttpContent
touch()
Records the current access location of this object for debugging purposes.HttpContent
touch(java.lang.Object hint)
Records the current access location of this object with an additional arbitrary information for debugging purposes.-
Methods inherited from interface io.netty.buffer.ByteBufHolder
content
-
Methods inherited from interface io.netty.handler.codec.DecoderResultProvider
decoderResult, setDecoderResult
-
Methods inherited from interface io.netty.handler.codec.http.HttpObject
getDecoderResult
-
Methods inherited from interface io.netty.util.ReferenceCounted
refCnt, release, release
-
-
-
-
Method Detail
-
copy
HttpContent copy()
Description copied from interface:ByteBufHolder
Creates a deep copy of thisByteBufHolder
.- Specified by:
copy
in interfaceByteBufHolder
-
duplicate
HttpContent duplicate()
Description copied from interface:ByteBufHolder
Duplicates thisByteBufHolder
. Be aware that this will not automatically callByteBufHolder.retain()
.- Specified by:
duplicate
in interfaceByteBufHolder
-
retainedDuplicate
HttpContent retainedDuplicate()
Description copied from interface:ByteBufHolder
Duplicates thisByteBufHolder
. This method returns a retained duplicate unlikeByteBufHolder.duplicate()
.- Specified by:
retainedDuplicate
in interfaceByteBufHolder
- See Also:
ByteBuf.retainedDuplicate()
-
replace
HttpContent replace(ByteBuf content)
Description copied from interface:ByteBufHolder
Returns a newByteBufHolder
which contains the specifiedcontent
.- Specified by:
replace
in interfaceByteBufHolder
-
retain
HttpContent retain()
Description copied from interface:ReferenceCounted
Increases the reference count by1
.- Specified by:
retain
in interfaceByteBufHolder
- Specified by:
retain
in interfaceReferenceCounted
-
retain
HttpContent retain(int increment)
Description copied from interface:ReferenceCounted
Increases the reference count by the specifiedincrement
.- Specified by:
retain
in interfaceByteBufHolder
- Specified by:
retain
in interfaceReferenceCounted
-
touch
HttpContent touch()
Description copied from interface:ReferenceCounted
Records the current access location of this object for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector
. This method is a shortcut totouch(null)
.- Specified by:
touch
in interfaceByteBufHolder
- Specified by:
touch
in interfaceReferenceCounted
-
touch
HttpContent touch(java.lang.Object hint)
Description copied from interface:ReferenceCounted
Records the current access location of this object with an additional arbitrary information for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector
.- Specified by:
touch
in interfaceByteBufHolder
- Specified by:
touch
in interfaceReferenceCounted
-
-