io.netty.buffer.ByteBuf.bytesBefore(ByteBufIndexFinder)
Use ByteBuf.forEachByte(ByteBufProcessor) instead.
Locates the first place where the specified indexFinder returns
true . The search takes place from the current readerIndex
(inclusive) to the current writerIndex .
This method does not modify readerIndex or writerIndex of
this buffer.
|
io.netty.buffer.SwappedByteBuf.bytesBefore(ByteBufIndexFinder) |
io.netty.buffer.EmptyByteBuf.bytesBefore(ByteBufIndexFinder) |
io.netty.buffer.AbstractByteBuf.bytesBefore(ByteBufIndexFinder) |
io.netty.buffer.ByteBuf.bytesBefore(int, ByteBufIndexFinder)
Use ByteBuf.forEachByte(int, int, ByteBufProcessor) instead.
Locates the first place where the specified indexFinder returns
true . The search starts the current readerIndex
(inclusive) and lasts for the specified length .
This method does not modify readerIndex or writerIndex of
this buffer.
|
io.netty.buffer.SwappedByteBuf.bytesBefore(int, ByteBufIndexFinder) |
io.netty.buffer.EmptyByteBuf.bytesBefore(int, ByteBufIndexFinder) |
io.netty.buffer.AbstractByteBuf.bytesBefore(int, ByteBufIndexFinder) |
io.netty.buffer.ByteBuf.bytesBefore(int, int, ByteBufIndexFinder)
Use ByteBuf.forEachByte(int, int, ByteBufProcessor) instead.
Locates the first place where the specified indexFinder returns
true . The search starts the specified index (inclusive)
and lasts for the specified length .
This method does not modify readerIndex or writerIndex of
this buffer.
|
io.netty.buffer.SwappedByteBuf.bytesBefore(int, int, ByteBufIndexFinder) |
io.netty.buffer.EmptyByteBuf.bytesBefore(int, int, ByteBufIndexFinder) |
io.netty.buffer.AbstractByteBuf.bytesBefore(int, int, ByteBufIndexFinder) |
io.netty.buffer.ByteBufUtil.indexOf(ByteBuf, int, int, ByteBufIndexFinder) |
io.netty.buffer.ByteBuf.indexOf(int, int, ByteBufIndexFinder)
Use ByteBuf.forEachByte(int, int, ByteBufProcessor) instead.
Locates the first place where the specified indexFinder
returns true . The search takes place from the specified
fromIndex (inclusive) to the specified toIndex
(exclusive).
If fromIndex is greater than toIndex , the search is
performed in a reversed order.
This method does not modify readerIndex or writerIndex of
this buffer.
|
io.netty.buffer.SwappedByteBuf.indexOf(int, int, ByteBufIndexFinder) |
io.netty.buffer.EmptyByteBuf.indexOf(int, int, ByteBufIndexFinder) |
io.netty.buffer.AbstractByteBuf.indexOf(int, int, ByteBufIndexFinder) |
io.netty.buffer.ByteBufUtil.release(Object)
use ReferenceCountUtil.release(Object)
|
io.netty.buffer.ByteBufUtil.release(Object, int)
use ReferenceCountUtil.release(Object, int)
|
io.netty.buffer.ByteBufUtil.retain(T)
use ReferenceCountUtil.retain(Object)
|
io.netty.buffer.ByteBufUtil.retain(T, int)
use ReferenceCountUtil.retain(Object, int)
|