public void run()

in src/com/pty4j/windows/conpty/ConsoleProcessListFetcher.java [127:141]


    public void run() {
      char[] buf = new char[8192];
      try {
        int readCount;
        while (!myIsStopped && (readCount = myReader.read(buf)) >= 0) {
          myBuffer.append(buf, 0, readCount);
        }
        if (myIsStopped) {
          myBuffer.append("Failed to read output: force stopped");
        }
      }
      catch (Exception e) {
        myBuffer.append("Failed to read output: ").append(e.getClass().getName()).append(" raised");
      }
    }