@Deprecated public class ReadOnlyByteBuf extends AbstractDerivedByteBuf
Unpooled.unmodifiableBuffer(ByteBuf)
而不是显式调用构造函数。
Constructor and Description |
---|
ReadOnlyByteBuf(ByteBuf buffer)
已过时。
|
Modifier and Type | Method and Description |
---|---|
protected byte |
_getByte(int index)
已过时。
|
protected int |
_getInt(int index)
已过时。
|
protected int |
_getIntLE(int index)
已过时。
|
protected long |
_getLong(int index)
已过时。
|
protected long |
_getLongLE(int index)
已过时。
|
protected short |
_getShort(int index)
已过时。
|
protected short |
_getShortLE(int index)
已过时。
|
protected int |
_getUnsignedMedium(int index)
已过时。
|
protected int |
_getUnsignedMediumLE(int index)
已过时。
|
protected void |
_setByte(int index, int value)
已过时。
|
protected void |
_setInt(int index, int value)
已过时。
|
protected void |
_setIntLE(int index, int value)
已过时。
|
protected void |
_setLong(int index, long value)
已过时。
|
protected void |
_setLongLE(int index, long value)
已过时。
|
protected void |
_setMedium(int index, int value)
已过时。
|
protected void |
_setMediumLE(int index, int value)
已过时。
|
protected void |
_setShort(int index, int value)
已过时。
|
protected void |
_setShortLE(int index, int value)
已过时。
|
ByteBufAllocator |
alloc()
已过时。
返回创建此缓冲区的 ByteBufAllocator 。
|
byte[] |
array()
已过时。
返回此缓冲区的后备字节数组。
|
int |
arrayOffset()
已过时。
返回此缓冲区的后备字节数组中第一个字节的偏移量。
|
ByteBuf |
asReadOnly()
已过时。
返回此缓冲区的只读版本。
|
int |
capacity()
已过时。
返回此缓冲区可包含的字节数(字节)。
|
ByteBuf |
capacity(int newCapacity)
已过时。
调整此缓冲区的容量。
|
ByteBuf |
copy(int index, int length)
已过时。
返回此缓冲区的子区域的副本。
|
ByteBuf |
discardReadBytes()
已过时。
丢弃第0个索引和
readerIndex 之间的字节。
|
ByteBuf |
duplicate()
已过时。
返回共享此缓冲区整个区域的缓冲区。
|
ByteBuf |
ensureWritable(int minWritableBytes)
已过时。
确保
the writable bytes的数量等于或大于指定值。
|
int |
ensureWritable(int minWritableBytes, boolean force)
已过时。
尝试确保
the writable bytes的数量等于或大于指定值。
|
int |
forEachByte(int index, int length, ByteProcessor processor)
已过时。
以指定的
processor 按升序迭代该缓冲区的指定区域。
|
int |
forEachByteDesc(int index, int length, ByteProcessor processor)
已过时。
以指定的
processor 降序遍历此缓冲区的指定区域。
|
byte |
getByte(int index)
已过时。
在此缓冲区中的指定绝对
index 处获取一个字节。
|
ByteBuf |
getBytes(int index, byte[] dst, int dstIndex, int length)
已过时。
将此缓冲区的数据传输到指定的绝对目标
index 开始的目标。
|
ByteBuf |
getBytes(int index, java.nio.ByteBuffer dst)
已过时。
将缓冲区的数据传输到指定的目的地,从指定的绝对
index 开始,直到目的地的位置达到其限制。
|
ByteBuf |
getBytes(int index, ByteBuf dst, int dstIndex, int length)
已过时。
将此缓冲区的数据传输到指定的绝对目标
index 开始的目标。
|
int |
getBytes(int index, java.nio.channels.FileChannel out, long position, int length)
已过时。
将此缓冲区的数据从指定的绝对
index 到指定通道,从给定的文件位置开始。
|
int |
getBytes(int index, java.nio.channels.GatheringByteChannel out, int length)
已过时。
将此缓冲区的数据传输到指定的绝对
index 开始的通道。
|
ByteBuf |
getBytes(int index, java.io.OutputStream out, int length)
已过时。
将此缓冲区的数据传输到以指定的绝对值
index 开始的指定流。
|
int |
getInt(int index)
已过时。
在此缓冲区中的指定绝对
index 处获取一个32位整数。
|
int |
getIntLE(int index)
已过时。
在具有Little Endian Byte Order的缓冲区中的指定绝对
index 处获取一个32位整数。
|
long |
getLong(int index)
已过时。
在此缓冲区的指定绝对
index 处获取一个64位长整数。
|
long |
getLongLE(int index)
已过时。
以Little Endian字节顺序在此缓冲区中的指定绝对
index 处获取64位长整数。
|
short |
getShort(int index)
已过时。
在此缓冲区的指定绝对
index 处获取一个16位短整数。
|
short |
getShortLE(int index)
已过时。
以小端字节顺序在此缓冲区中的指定绝对
index 处获取一个16位短整数。
|
int |
getUnsignedMedium(int index)
已过时。
在此缓冲区中指定的绝对
index 处获取一个无符号的24位中等整数。
|
int |
getUnsignedMediumLE(int index)
已过时。
以小端字节顺序在此缓冲区中的指定绝对
index 处获取无符号的24位中等整数。
|
boolean |
hasArray()
已过时。
当且仅当此缓冲区有一个后备字节数组时,才返回
true 。
|
boolean |
hasMemoryAddress()
已过时。
返回
true 当且仅当此缓冲区具有对指向后备数据的低级内存地址的引用时。
|
boolean |
isDirect()
已过时。
当且仅当此缓冲区由NIO直接缓冲区支持时才返回
true 。
|
boolean |
isReadOnly()
已过时。
当且仅当此缓冲区为只读时才返回
true 。
|
boolean |
isWritable()
已过时。
返回
true 当且仅当
(this.capacity - this.writerIndex) 大于
0 。
|
boolean |
isWritable(int numBytes)
已过时。
返回
true 当且仅当此缓冲区有足够空间允许写入指定数量的元素时。
|
long |
memoryAddress()
已过时。
返回指向备份数据第一个字节的低级内存地址。
|
java.nio.ByteBuffer |
nioBuffer(int index, int length)
已过时。
将此缓冲区的子区域公开为NIO
ByteBuffer 。
|
int |
nioBufferCount()
已过时。
返回构成此缓冲区的NIO
ByteBuffer 的最大数量。
|
java.nio.ByteBuffer[] |
nioBuffers(int index, int length)
已过时。
以指定的索引和长度公开此缓冲区的字节为NIO
ByteBuffer 返回的缓冲区共享或包含此缓冲区的复制内容,同时更改返回的NIO缓冲区的位置和限制不会影响此索引和标记缓冲。
|
java.nio.ByteOrder |
order()
已过时。
|
ByteBuf |
setByte(int index, int value)
已过时。
在此缓冲区中的指定绝对
index 处设置指定的字节。
|
ByteBuf |
setBytes(int index, byte[] src, int srcIndex, int length)
已过时。
将指定的源数组的数据从指定的绝对
index 开始传送到此缓冲区。
|
ByteBuf |
setBytes(int index, java.nio.ByteBuffer src)
已过时。
将指定的源缓冲区的数据从指定的绝对
index 开始传输到此缓冲区,直到源缓冲区的位置达到其限制。
|
ByteBuf |
setBytes(int index, ByteBuf src, int srcIndex, int length)
已过时。
将指定的源缓冲区的数据从指定的绝对
index 开始传送到此缓冲区。
|
int |
setBytes(int index, java.nio.channels.FileChannel in, long position, int length)
已过时。
将从给定文件位置开始的指定源通道的内容传输到此缓冲区,从指定的绝对
index 。
|
int |
setBytes(int index, java.io.InputStream in, int length)
已过时。
将指定源流的内容从指定绝对
index 开始传输到此缓冲区。
|
int |
setBytes(int index, java.nio.channels.ScatteringByteChannel in, int length)
已过时。
将指定源通道的内容从指定绝对
index 开始传送到此缓冲区。
|
ByteBuf |
setInt(int index, int value)
已过时。
在此缓冲区中的指定绝对
index 处设置指定的32位整数。
|
ByteBuf |
setIntLE(int index, int value)
已过时。
使用Little Endian字节顺序在此缓冲区中的指定绝对
index 处设置指定的32位整数。
|
ByteBuf |
setLong(int index, long value)
已过时。
在此缓冲区中的指定绝对
index 处设置指定的64位长整数。
|
ByteBuf |
setLongLE(int index, long value)
已过时。
以小端字节顺序在此缓冲区中的指定绝对
index 处设置指定的64位长整数。
|
ByteBuf |
setMedium(int index, int value)
已过时。
在此缓冲区中的指定绝对
index 处设置指定的24位中等整数。
|
ByteBuf |
setMediumLE(int index, int value)
已过时。
以Little Endian字节顺序在此缓冲区中的指定绝对
index 处设置指定的24位中等整数。
|
ByteBuf |
setShort(int index, int value)
已过时。
在此缓冲区的指定绝对
index 处设置指定的16位短整数。
|
ByteBuf |
setShortLE(int index, int value)
已过时。
使用Little Endian Byte Order在此缓冲区中的指定绝对
index 处设置指定的16位短整数。
|
ByteBuf |
slice(int index, int length)
已过时。
返回此缓冲区的子区域的一部分。
|
ByteBuf |
unwrap()
已过时。
如果此缓冲区是另一个缓冲区的包装,则返回底层缓冲区实例。
|
internalNioBuffer, refCnt, release, release, retain, retain, touch, touch
adjustMarkers, bytesBefore, bytesBefore, bytesBefore, checkDstIndex, checkIndex, checkIndex, checkNewCapacity, checkReadableBytes, checkSrcIndex, clear, compareTo, copy, discardSomeReadBytes, ensureAccessible, equals, forEachByte, forEachByteDesc, getBoolean, getBytes, getBytes, getBytes, getChar, getCharSequence, getDouble, getFloat, getMedium, getMediumLE, getUnsignedByte, getUnsignedInt, getUnsignedIntLE, getUnsignedShort, getUnsignedShortLE, hashCode, indexOf, isReadable, isReadable, markReaderIndex, markWriterIndex, maxCapacity, maxCapacity, maxWritableBytes, newSwappedByteBuf, nioBuffer, nioBuffers, order, readableBytes, readBoolean, readByte, readBytes, readBytes, readBytes, readBytes, readBytes, readBytes, readBytes, readBytes, readBytes, readBytes, readChar, readCharSequence, readDouble, readerIndex, readerIndex, readFloat, readInt, readIntLE, readLong, readLongLE, readMedium, readMediumLE, readRetainedSlice, readShort, readShortLE, readSlice, readUnsignedByte, readUnsignedInt, readUnsignedIntLE, readUnsignedMedium, readUnsignedMediumLE, readUnsignedShort, readUnsignedShortLE, resetReaderIndex, resetWriterIndex, retainedDuplicate, retainedSlice, retainedSlice, setBoolean, setBytes, setBytes, setBytes, setChar, setCharSequence, setDouble, setFloat, setIndex, setZero, skipBytes, slice, toString, toString, toString, writableBytes, writeBoolean, writeByte, writeBytes, writeBytes, writeBytes, writeBytes, writeBytes, writeBytes, writeBytes, writeBytes, writeBytes, writeChar, writeCharSequence, writeDouble, writeFloat, writeInt, writeIntLE, writeLong, writeLongLE, writeMedium, writeMediumLE, writerIndex, writerIndex, writeShort, writeShortLE, writeZero
getDoubleLE, getFloatLE, readDoubleLE, readFloatLE, setDoubleLE, setFloatLE, writeDoubleLE, writeFloatLE
public ReadOnlyByteBuf(ByteBuf buffer)
public boolean isReadOnly()
ByteBuf
true
。
isReadOnly
在课堂
AbstractDerivedByteBuf
public boolean isWritable()
ByteBuf
true
当且仅当
(this.capacity - this.writerIndex)
大于
0
。
isWritable
在课堂上
AbstractByteBuf
public boolean isWritable(int numBytes)
ByteBuf
true
。
isWritable
在课堂
AbstractByteBuf
public int ensureWritable(int minWritableBytes, boolean force)
ByteBuf
ByteBuf.ensureWritable(int)
不同,此方法不会引发异常,但会返回代码。
ensureWritable
在课堂上
AbstractByteBuf
minWritableBytes
- 可写入字节的预期最小数量
force
- 当ByteBuf.writerIndex()
+ minWritableBytes
> ByteBuf.maxCapacity()
:
true
- 缓冲区的容量扩大到ByteBuf.maxCapacity()
false
- 缓冲区的容量不变 0
如果缓冲区有足够的可写字节,并且其容量不变。
1
如果缓冲区没有足够的字节,并且其容量不变。
2
如果缓冲区有足够的可写字节,并且其容量已增加。
3
如果缓冲区没有足够的字节,但其容量已增加到最大值。
public ByteBuf ensureWritable(int minWritableBytes)
ByteBuf
ensureWritable
在课堂
AbstractByteBuf
minWritableBytes
- 可写入字节的预期最小数量
public ByteBufAllocator alloc()
ByteBuf
ByteBufAllocator
。
@Deprecated public java.nio.ByteOrder order()
ByteBuf
public boolean isDirect()
ByteBuf
true
。
public boolean hasArray()
ByteBuf
true
。
如果此方法返回true,则可以放心地致电ByteBuf.array()
和ByteBuf.arrayOffset()
。
public int arrayOffset()
ByteBuf
arrayOffset
在课堂上
ByteBuf
public boolean hasMemoryAddress()
ByteBuf
true
。
hasMemoryAddress
在课程
ByteBuf
public long memoryAddress()
ByteBuf
memoryAddress
在课堂上
ByteBuf
public ByteBuf discardReadBytes()
ByteBuf
readerIndex
之间的字节。
它移动之间的字节readerIndex
和writerIndex
至第0索引,并且设置readerIndex
和writerIndex
至0
和oldWriterIndex - oldReaderIndex
分别。
请参阅班级文件以获得更详细的解释。
discardReadBytes
在课堂上
AbstractByteBuf
public ByteBuf setBytes(int index, ByteBuf src, int srcIndex, int length)
ByteBuf
index
开始传输到此缓冲区。
此方法不会修改来源(即this
)和目的地的readerIndex
或writerIndex
。
public ByteBuf setBytes(int index, byte[] src, int srcIndex, int length)
ByteBuf
index
。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
public ByteBuf setBytes(int index, java.nio.ByteBuffer src)
ByteBuf
index
开始传输到此缓冲区,直到源缓冲区的位置达到其限制。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
public ByteBuf setByte(int index, int value)
ByteBuf
index
处设置指定的字节。
指定值的24个高位被忽略。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setByte
在课程
AbstractByteBuf
protected void _setByte(int index, int value)
_setByte
在课堂上
AbstractByteBuf
public ByteBuf setShort(int index, int value)
ByteBuf
index
处设置指定的16位短整数。
指定值的16个高位被忽略。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setShort
在课堂上
AbstractByteBuf
protected void _setShort(int index, int value)
_setShort
在课堂上
AbstractByteBuf
public ByteBuf setShortLE(int index, int value)
ByteBuf
index
处设置指定的16位短整数。
指定值的16个高位被忽略。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setShortLE
在课堂上
AbstractByteBuf
protected void _setShortLE(int index, int value)
_setShortLE
在课程
AbstractByteBuf
public ByteBuf setMedium(int index, int value)
ByteBuf
index
处设置指定的24位中等整数。
请注意,最高有效字节在指定值中被忽略。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setMedium
在课程
AbstractByteBuf
protected void _setMedium(int index, int value)
_setMedium
AbstractByteBuf
public ByteBuf setMediumLE(int index, int value)
ByteBuf
index
处设置指定的24位中等整数。
请注意,最高有效字节在指定值中被忽略。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setMediumLE
在课程
AbstractByteBuf
protected void _setMediumLE(int index, int value)
_setMediumLE
在课堂上
AbstractByteBuf
public ByteBuf setInt(int index, int value)
ByteBuf
index
处设置指定的32位整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setInt
在课堂上
AbstractByteBuf
protected void _setInt(int index, int value)
_setInt
在课堂上
AbstractByteBuf
public ByteBuf setIntLE(int index, int value)
ByteBuf
index
处设置指定的32位整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setIntLE
class
AbstractByteBuf
protected void _setIntLE(int index, int value)
_setIntLE
在课堂
AbstractByteBuf
public ByteBuf setLong(int index, long value)
ByteBuf
index
处设置指定的64位长整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setLong
在课堂上
AbstractByteBuf
protected void _setLong(int index, long value)
_setLong
在课程
AbstractByteBuf
public ByteBuf setLongLE(int index, long value)
ByteBuf
index
处设置指定的64位长整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
setLongLE
在课堂
AbstractByteBuf
protected void _setLongLE(int index, long value)
_setLongLE
在课堂上
AbstractByteBuf
public int setBytes(int index, java.io.InputStream in, int length)
ByteBuf
index
开始传输到此缓冲区。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
public int setBytes(int index, java.nio.channels.ScatteringByteChannel in, int length)
ByteBuf
index
开始传输到此缓冲区。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
public int setBytes(int index, java.nio.channels.FileChannel in, long position, int length)
ByteBuf
index
。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
此方法不会修改频道的位置。
public int getBytes(int index, java.nio.channels.GatheringByteChannel out, int length) throws java.io.IOException
ByteBuf
index
开始的通道。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
public int getBytes(int index, java.nio.channels.FileChannel out, long position, int length) throws java.io.IOException
ByteBuf
index
开始index
到指定的通道,从给定的文件位置开始。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
此方法不会修改频道的位置。
public ByteBuf getBytes(int index, java.io.OutputStream out, int length) throws java.io.IOException
ByteBuf
index
的指定流index
。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
public ByteBuf getBytes(int index, byte[] dst, int dstIndex, int length)
ByteBuf
index
。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
public ByteBuf getBytes(int index, ByteBuf dst, int dstIndex, int length)
ByteBuf
index
开始的目标。
此方法不会修改来源(即this
)和目的地的readerIndex
或writerIndex
。
public ByteBuf getBytes(int index, java.nio.ByteBuffer dst)
ByteBuf
index
开始,直到目标位置达到其限制。
此方法不会修改此缓冲区的readerIndex
或writerIndex
,而目标的position
将会增加。
public ByteBuf duplicate()
ByteBuf
readerIndex
或writerIndex
。
读者和作家的标记不会重复。 另外请注意,此方法不会调用ByteBuf.retain()
,因此引用计数不会增加。
duplicate
在课程
AbstractByteBuf
ByteBuf.slice()
返回的缓冲区的缓冲区。
然而,这个缓冲区将共享底层缓冲区的容量,因此如果需要的话允许访问所有的底层内容。
public ByteBuf copy(int index, int length)
ByteBuf
readerIndex
或writerIndex
。
public ByteBuf slice(int index, int length)
ByteBuf
readerIndex
或writerIndex
。
另外请注意,此方法不会调用ByteBuf.retain()
,因此引用计数不会增加。
slice
在课堂上
AbstractByteBuf
public byte getByte(int index)
ByteBuf
index
处获取一个字节。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getByte
,课时
AbstractByteBuf
protected byte _getByte(int index)
_getByte
在课堂上
AbstractByteBuf
public short getShort(int index)
ByteBuf
index
处获取一个16位短整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getShort
在课堂上
AbstractByteBuf
protected short _getShort(int index)
_getShort
在课堂
AbstractByteBuf
public short getShortLE(int index)
ByteBuf
index
处获取一个16位短整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getShortLE
在课堂
AbstractByteBuf
protected short _getShortLE(int index)
_getShortLE
在课堂
AbstractByteBuf
public int getUnsignedMedium(int index)
ByteBuf
index
处获取一个无符号的24位中等整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getUnsignedMedium
在课堂
AbstractByteBuf
protected int _getUnsignedMedium(int index)
_getUnsignedMedium
在课程
AbstractByteBuf
public int getUnsignedMediumLE(int index)
ByteBuf
index
处获取无符号的24位中等整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
protected int _getUnsignedMediumLE(int index)
_getUnsignedMediumLE
在课堂
AbstractByteBuf
public int getInt(int index)
ByteBuf
index
处获取一个32位整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getInt
在课堂
AbstractByteBuf
protected int _getInt(int index)
_getInt
在课堂
AbstractByteBuf
public int getIntLE(int index)
ByteBuf
index
处获取一个32位整数,其index
字节顺序。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getIntLE
在课堂
AbstractByteBuf
protected int _getIntLE(int index)
_getIntLE
在课堂
AbstractByteBuf
public long getLong(int index)
ByteBuf
index
处获取一个64位长整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getLong
在课堂上
AbstractByteBuf
protected long _getLong(int index)
_getLong
在课堂
AbstractByteBuf
public long getLongLE(int index)
ByteBuf
index
处获取64位长整数。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
getLongLE
在课堂
AbstractByteBuf
protected long _getLongLE(int index)
_getLongLE
在课程
AbstractByteBuf
public int nioBufferCount()
ByteBuf
ByteBuffer
的最大数量。
请注意, ByteBuf.nioBuffers()
或ByteBuf.nioBuffers(int, int)
可能会返回更少数量的ByteBuffer
s。
nioBufferCount
在课堂
ByteBuf
-1
如果此缓冲区没有底层ByteBuffer
。
如果此缓冲区至少有一个基础ByteBuffer
,则基础ByteBuffer
的ByteBuffer
。
请注意,此方法不会返回0
以避免混淆。
ByteBuf.nioBuffer()
,
ByteBuf.nioBuffer(int, int)
,
ByteBuf.nioBuffers()
,
ByteBuf.nioBuffers(int, int)
public java.nio.ByteBuffer nioBuffer(int index, int length)
ByteBuf
ByteBuffer
。
返回的缓冲区共享或包含此缓冲区的复制内容,同时更改返回的NIO缓冲区的位置和限制不会影响此缓冲区的索引和标记。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
请注意,如果此缓冲区是动态缓冲区并且它调整了其容量,则返回的NIO缓冲区将不会看到此缓冲区的更改。
public java.nio.ByteBuffer[] nioBuffers(int index, int length)
ByteBuf
ByteBuffer
返回的缓冲区共享或包含此缓冲区的复制内容,同时更改返回的NIO缓冲区的位置和限制不会影响此索引和标记缓冲。
此方法不会修改此缓冲区的readerIndex
或writerIndex
。
请注意,如果此缓冲区是动态缓冲区并且它调整了其容量,则返回的NIO缓冲区将不会看到此缓冲区的更改。
nioBuffers
在课堂
ByteBuf
ByteBuf.nioBufferCount()
,
ByteBuf.nioBuffer()
,
ByteBuf.nioBuffer(int, int)
public int forEachByte(int index, int length, ByteProcessor processor)
ByteBuf
processor
按升序迭代该缓冲区的指定区域。
(即index
, (index + 1)
,.. (index + length - 1)
)
forEachByte
在课堂上
AbstractByteBuf
-1
如果处理器迭代到或超出指定区域的末尾。
上次访问的索引如果ByteProcessor.process(byte)
返回false
。
public int forEachByteDesc(int index, int length, ByteProcessor processor)
ByteBuf
processor
降序遍历此缓冲区的指定区域。
(即(index + length - 1)
, (index + length - 2)
,... index
)
forEachByteDesc
在课堂上
AbstractByteBuf
-1
如果处理器迭代到或超出指定区域的开始位置。
最后访问的索引如果ByteProcessor.process(byte)
返回false
。
public int capacity()
ByteBuf
public ByteBuf capacity(int newCapacity)
ByteBuf
newCapacity
小于当前容量,则此缓冲区的内容将被截断。
如果newCapacity
大于当前容量,则缓冲区会附加长度为(newCapacity - currentCapacity)
未指定数据。
public ByteBuf asReadOnly()
ByteBuf
asReadOnly
在课堂
AbstractByteBuf
Copyright © 2008–2018 The Netty Project. All rights reserved.