org.springframework.util.exec
Class StreamPumper
java.lang.Object
org.springframework.util.exec.StreamPumper
- All Implemented Interfaces:
- Runnable
public class StreamPumper
- extends Object
- implements Runnable
Copies all data from an input stream to an output stream.
- Author:
- thomas.haas@softwired-inc.com
Method Summary |
void |
run()
Copies data from the input stream to the output stream. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
StreamPumper
public StreamPumper(InputStream is,
OutputStream os)
- Create a new stream pumper.
- Parameters:
is
- input stream to read data fromos
- output stream to write data to.
run
public void run()
- Copies data from the input stream to the output stream.
Terminates as soon as the input stream is closed or an error occurs.
- Specified by:
run
in interface Runnable
Copyright © 2011. All Rights Reserved.