public class DefaultHttpContent extends DefaultHttpObject implements HttpContent
HttpContent implementation.| Constructor and Description |
|---|
DefaultHttpContent(ByteBuf content)
Creates a new instance with the specified chunk content.
|
| Modifier and Type | Method and Description |
|---|---|
ByteBuf |
content()
Return the data which is held by this
ByteBufHolder. |
HttpContent |
copy()
Creates a deep copy of this
ByteBufHolder. |
HttpContent |
duplicate()
Duplicates this
ByteBufHolder. |
int |
refCnt()
Returns the reference count of this object.
|
boolean |
release()
Decreases the reference count by
1 and deallocates this object if the reference count reaches at
0. |
boolean |
release(int decrement)
Decreases the reference count by the specified
decrement and deallocates this object if the reference
count reaches at 0. |
HttpContent |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content. |
HttpContent |
retain()
Increases the reference count by
1. |
HttpContent |
retain(int increment)
Increases the reference count by the specified
increment. |
HttpContent |
retainedDuplicate()
Duplicates this
ByteBufHolder. |
String |
toString() |
HttpContent |
touch()
Records the current access location of this object for debugging purposes.
|
HttpContent |
touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
decoderResult, equals, getDecoderResult, hashCode, setDecoderResultclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetDecoderResultdecoderResult, setDecoderResultpublic DefaultHttpContent(ByteBuf content)
public ByteBuf content()
ByteBufHolderByteBufHolder.content in interface ByteBufHolderpublic HttpContent copy()
ByteBufHolderByteBufHolder.copy in interface ByteBufHoldercopy in interface HttpContentpublic HttpContent duplicate()
ByteBufHolderByteBufHolder. Be aware that this will not automatically call ByteBufHolder.retain().duplicate in interface ByteBufHolderduplicate in interface HttpContentpublic HttpContent retainedDuplicate()
ByteBufHolderByteBufHolder. This method returns a retained duplicate unlike ByteBufHolder.duplicate().retainedDuplicate in interface ByteBufHolderretainedDuplicate in interface HttpContentByteBuf.retainedDuplicate()public HttpContent replace(ByteBuf content)
ByteBufHolderByteBufHolder which contains the specified content.replace in interface ByteBufHolderreplace in interface HttpContentpublic int refCnt()
ReferenceCounted0, it means this object has been deallocated.refCnt in interface ReferenceCountedpublic HttpContent retain()
ReferenceCounted1.retain in interface ByteBufHolderretain in interface HttpContentretain in interface ReferenceCountedpublic HttpContent retain(int increment)
ReferenceCountedincrement.retain in interface ByteBufHolderretain in interface HttpContentretain in interface ReferenceCountedpublic HttpContent touch()
ReferenceCountedResourceLeakDetector. This method is a shortcut to touch(null).touch in interface ByteBufHoldertouch in interface HttpContenttouch in interface ReferenceCountedpublic HttpContent touch(Object hint)
ReferenceCountedResourceLeakDetector.touch in interface ByteBufHoldertouch in interface HttpContenttouch in interface ReferenceCountedpublic boolean release()
ReferenceCounted1 and deallocates this object if the reference count reaches at
0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounteddecrement and deallocates this object if the reference
count reaches at 0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedCopyright © 2008–2025 The Netty Project. All rights reserved.