public class DefaultByteBufHolder extends java.lang.Object implements ByteBufHolder
ByteBufHolder
that holds it's data in a ByteBuf
.构造器和说明 |
---|
DefaultByteBufHolder(ByteBuf data) |
限定符和类型 | 方法和说明 |
---|---|
ByteBuf |
content()
Return the data which is held by this
ByteBufHolder . |
protected java.lang.String |
contentToString()
Return
ByteBuf.toString() without checking the reference count first. |
ByteBufHolder |
copy()
Creates a deep copy of this
ByteBufHolder . |
ByteBufHolder |
duplicate()
Duplicates this
ByteBufHolder . |
boolean |
equals(java.lang.Object o)
This implementation of the
equals operation is restricted to
work only with instances of the same class. |
int |
hashCode() |
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 . |
ByteBufHolder |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
ByteBufHolder |
retain()
Increases the reference count by
1 . |
ByteBufHolder |
retain(int increment)
Increases the reference count by the specified
increment . |
ByteBufHolder |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
java.lang.String |
toString() |
ByteBufHolder |
touch()
Records the current access location of this object for debugging purposes.
|
ByteBufHolder |
touch(java.lang.Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
public DefaultByteBufHolder(ByteBuf data)
public ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
在接口中 ByteBufHolder
public ByteBufHolder copy()
ByteBufHolder
.
This method calls replace(content().copy())
by default.
copy
在接口中 ByteBufHolder
public ByteBufHolder duplicate()
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.
This method calls replace(content().duplicate())
by default.
duplicate
在接口中 ByteBufHolder
public ByteBufHolder retainedDuplicate()
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.
This method calls replace(content().retainedDuplicate())
by default.
retainedDuplicate
在接口中 ByteBufHolder
ByteBuf.retainedDuplicate()
public ByteBufHolder replace(ByteBuf content)
ByteBufHolder
which contains the specified content
.
Override this method to return a new instance of this object whose content is set to the specified
content
. The default implementation of copy()
, duplicate()
and
retainedDuplicate()
invokes this method to create a copy.
replace
在接口中 ByteBufHolder
public int refCnt()
ReferenceCounted
0
, it means this object has been deallocated.refCnt
在接口中 ReferenceCounted
public ByteBufHolder retain()
ReferenceCounted
1
.retain
在接口中 ByteBufHolder
retain
在接口中 ReferenceCounted
public ByteBufHolder retain(int increment)
ReferenceCounted
increment
.retain
在接口中 ByteBufHolder
retain
在接口中 ReferenceCounted
public ByteBufHolder touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
在接口中 ByteBufHolder
touch
在接口中 ReferenceCounted
public ByteBufHolder touch(java.lang.Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
在接口中 ByteBufHolder
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 deallocatedprotected final java.lang.String contentToString()
ByteBuf.toString()
without checking the reference count first. This is useful to implement
toString()
.public java.lang.String toString()
toString
在类中 java.lang.Object
public boolean equals(java.lang.Object o)
equals
operation is restricted to
work only with instances of the same class. The reason for that is that
Netty library already has a number of classes that extend DefaultByteBufHolder
and
override equals
method with an additional comparison logic and we
need the symmetric property of the equals
operation to be preserved.equals
在类中 java.lang.Object
o
- the reference object with which to compare.true
if this object is the same as the obj
argument; false
otherwise.public int hashCode()
hashCode
在类中 java.lang.Object