writeChar method

void writeChar(
  1. int codePoint
)

Writes data to the terminal. Special characters are interpreted.

See also: Buffer.writeChar

Implementation

void writeChar(int codePoint) {
  _queue.addLast(codePoint);
  _processInput();
  refresh();
}