Writes raw (already framed) bytes to the server's stdin.
@override void write(List<int> data) { try { _process.stdin.add(data); } on Object { // The process is gone; the exit watcher reports the failure. } }