public class DefaultByteBufHolder extends java.lang.Object implements ByteBufHolder
ByteBufHolder
that holds it's data in a ByteBuf
.Constructor and Description |
---|
DefaultByteBufHolder(ByteBuf data) |
Modifier and Type | Method and Description |
---|---|
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()
Create a deep copy of this
ByteBufHolder . |
ByteBufHolder |
duplicate()
Duplicate the
ByteBufHolder . |
boolean |
equals(java.lang.Object o) |
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 |
retain()
Increases the reference count by
1 . |
ByteBufHolder |
retain(int increment)
Increases the reference count by the specified
increment . |
java.lang.String |
toString() |
public DefaultByteBufHolder(ByteBuf data)
public ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
in interface ByteBufHolder
public ByteBufHolder copy()
ByteBufHolder
ByteBufHolder
.copy
in interface ByteBufHolder
public ByteBufHolder duplicate()
ByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.duplicate
in interface ByteBufHolder
public int refCnt()
ReferenceCounted
0
, it means this object has been deallocated.refCnt
in interface ReferenceCounted
public ByteBufHolder retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface ReferenceCounted
public ByteBufHolder retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface ReferenceCounted
public boolean release()
ReferenceCounted
1
and deallocates this object if the reference count reaches at
0
.release
in interface 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
in interface 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
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
Copyright © 2008–2018 The Netty Project. All rights reserved.