ByteBuf.bytesBefore

Locates the first occurrence of the specified {@code value} in this buffer. The search takes place from the current {@code readerIndex} (inclusive) to the current {@code writerIndex} (exclusive). <p> This method does not modify {@code readerIndex} or {@code writerIndex} of this buffer.

@return the number of bytes between the current {@code readerIndex} and the first occurrence if found. {@code -1} otherwise.

  1. int bytesBefore(byte value)
    class ByteBuf
    abstract
    int
    bytesBefore
    (
    byte value
    )
  2. int bytesBefore(int length, byte value)
  3. int bytesBefore(int index, int length, byte value)

Meta