public interface ByteBufHolder extends ReferenceCounted
Modifier and Type | Method and Description |
---|---|
ByteBuf |
content()
返回此 ByteBufHolder 所持有的数据。
|
ByteBufHolder |
copy()
创建此 ByteBufHolder 的深层副本。
|
ByteBufHolder |
duplicate()
复制这个 ByteBufHolder 。
|
ByteBufHolder |
replace(ByteBuf content)
返回一个新 ByteBufHolder 包含指定content 。
|
ByteBufHolder |
retain()
将参考计数增加
1 。
|
ByteBufHolder |
retain(int increment)
通过指定的
increment 增加引用计数。
|
ByteBufHolder |
retainedDuplicate()
重复此 ByteBufHolder 。
|
ByteBufHolder |
touch()
记录此对象的当前访问位置以进行调试。
|
ByteBufHolder |
touch(java.lang.Object hint)
记录此对象的当前访问位置,并附加一些用于调试的任意信息。
|
refCnt, release, release
ByteBuf content()
ByteBufHolder
持有的数据。
ByteBufHolder copy()
ByteBufHolder
的深层副本。
ByteBufHolder duplicate()
ByteBufHolder
。
请注意,这不会自动拨打retain()
。
ByteBufHolder retainedDuplicate()
ByteBufHolder
。
与duplicate()
不同,此方法返回保留的副本。
ByteBufHolder replace(ByteBuf content)
ByteBufHolder
包含指定content
。
ByteBufHolder retain()
ReferenceCounted
复制的描述
1
。
retain
接口
ReferenceCounted
ByteBufHolder retain(int increment)
ReferenceCounted
复制的描述
increment
。
retain
在界面
ReferenceCounted
ByteBufHolder touch()
ReferenceCounted
复制的描述
touch
接口
ReferenceCounted
ByteBufHolder touch(java.lang.Object hint)
ReferenceCounted
复制的描述
ResourceLeakDetector
提供给您。
touch
in interface
ReferenceCounted
Copyright © 2008–2018 The Netty Project. All rights reserved.