readByte method

int readByte()

Reads the byte at the readerIndex and increments the readerIndex by 1 afterwards.


Exceptions:

Implementation

int readByte() {
  try {
    return getByte(readerIndex);
  } finally {
    readerIndex++;
  }
}