public class DefaultByteBufHolder extends 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 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(Object o) |
int |
hashCode() |
int |
refCnt() |
boolean |
release() |
boolean |
release(int decrement) |
ByteBufHolder |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
ByteBufHolder |
retain() |
ByteBufHolder |
retain(int increment) |
ByteBufHolder |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
String |
toString() |
ByteBufHolder |
touch() |
ByteBufHolder |
touch(Object hint) |
public DefaultByteBufHolder(ByteBuf data)
public ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
in interface ByteBufHolder
public ByteBufHolder copy()
ByteBufHolder
.
This method calls replace(content().copy())
by default.
copy
in interface ByteBufHolder
public ByteBufHolder duplicate()
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.
This method calls replace(content().duplicate())
by default.
duplicate
in interface ByteBufHolder
public ByteBufHolder retainedDuplicate()
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.
This method calls replace(content().retainedDuplicate())
by default.
retainedDuplicate
in interface 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
in interface ByteBufHolder
public int refCnt()
refCnt
in interface io.netty.util.ReferenceCounted
public ByteBufHolder retain()
retain
in interface ByteBufHolder
retain
in interface io.netty.util.ReferenceCounted
public ByteBufHolder retain(int increment)
retain
in interface ByteBufHolder
retain
in interface io.netty.util.ReferenceCounted
public ByteBufHolder touch()
touch
in interface ByteBufHolder
touch
in interface io.netty.util.ReferenceCounted
public ByteBufHolder touch(Object hint)
touch
in interface ByteBufHolder
touch
in interface io.netty.util.ReferenceCounted
public boolean release()
release
in interface io.netty.util.ReferenceCounted
public boolean release(int decrement)
release
in interface io.netty.util.ReferenceCounted
protected final String contentToString()
ByteBuf.toString()
without checking the reference count first. This is useful to implement
toString()
.Copyright © 2008–2019 The Netty Project. All rights reserved.