public void waitFor()

in src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java [110:114]


    public void waitFor() throws InterruptedException {
        while (!hasResult()) {
            Thread.sleep(SLEEP_TIME_MS);
        }
    }