public StreamPumper()

in src/main/java/org/apache/commons/exec/StreamPumper.java [66:71]


    public StreamPumper(final InputStream is, final OutputStream os, final boolean closeWhenExhausted) {
        this.is = is;
        this.os = os;
        this.size = DEFAULT_SIZE;
        this.closeWhenExhausted = closeWhenExhausted;
    }