skipWrite method

void skipWrite(
  1. int numberOfBytes
)

Moves the write marker forwards by the given numberOfBytes

Implementation

void skipWrite(int numberOfBytes) {
  _writePos += numberOfBytes;
}