Package org.apache.commons.exec
Class InputStreamPumper
- java.lang.Object
-
- org.apache.commons.exec.InputStreamPumper
-
-
Field Summary
Fields Modifier and Type Field Description static int
SLEEPING_TIME
-
Constructor Summary
Constructors Constructor Description InputStreamPumper(InputStream is, OutputStream os)
Create a new stream pumper.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
run()
Copies data from the input stream to the output stream.void
stopProcessing()
-
-
-
Field Detail
-
SLEEPING_TIME
public static final int SLEEPING_TIME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InputStreamPumper
public InputStreamPumper(InputStream is, OutputStream os)
Create a new stream pumper.- Parameters:
is
- input stream to read data fromos
- output stream to write data to.
-
-