queueByte method

void queueByte(
  1. int byte
)

Queue a single byte.

Implementation

void queueByte(int byte) {
  _byteQueue.add(byte);
}