public class DefaultHttpContent extends DefaultHttpObject implements HttpContent
HttpContent
implementation.构造器和说明 |
---|
DefaultHttpContent(ByteBuf content)
Creates a new instance with the specified chunk content.
|
限定符和类型 | 方法和说明 |
---|---|
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 . |
java.lang.String |
toString() |
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.
|
decoderResult, equals, getDecoderResult, hashCode, setDecoderResult
getDecoderResult
decoderResult, setDecoderResult
public DefaultHttpContent(ByteBuf content)
public ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
在接口中 ByteBufHolder
public HttpContent copy()
ByteBufHolder
ByteBufHolder
.copy
在接口中 ByteBufHolder
copy
在接口中 HttpContent
public HttpContent duplicate()
ByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.duplicate
在接口中 ByteBufHolder
duplicate
在接口中 HttpContent
public HttpContent retainedDuplicate()
ByteBufHolder
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.retainedDuplicate
在接口中 ByteBufHolder
retainedDuplicate
在接口中 HttpContent
ByteBuf.retainedDuplicate()
public HttpContent replace(ByteBuf content)
ByteBufHolder
ByteBufHolder
which contains the specified content
.replace
在接口中 ByteBufHolder
replace
在接口中 HttpContent
public int refCnt()
ReferenceCounted
0
, it means this object has been deallocated.refCnt
在接口中 ReferenceCounted
public HttpContent retain()
ReferenceCounted
1
.retain
在接口中 ByteBufHolder
retain
在接口中 HttpContent
retain
在接口中 ReferenceCounted
public HttpContent retain(int increment)
ReferenceCounted
increment
.retain
在接口中 ByteBufHolder
retain
在接口中 HttpContent
retain
在接口中 ReferenceCounted
public HttpContent touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
在接口中 ByteBufHolder
touch
在接口中 HttpContent
touch
在接口中 ReferenceCounted
public HttpContent touch(java.lang.Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
在接口中 ByteBufHolder
touch
在接口中 HttpContent
touch
在接口中 ReferenceCounted
public boolean release()
ReferenceCounted
1
and deallocates this object if the reference count reaches at
0
.release
在接口中 ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounted
decrement
and deallocates this object if the reference
count reaches at 0
.release
在接口中 ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocatedpublic java.lang.String toString()
toString
在类中 java.lang.Object