write method

  1. @override
void write(
  1. List<int> data
)
override

Writes raw (already framed) bytes to the server's stdin.

Implementation

@override
void write(List<int> data) {
  try {
    _process.stdin.add(data);
  } on Object {
    // The process is gone; the exit watcher reports the failure.
  }
}