| Constructor and Description |
|---|
StreamPumper(InputStream is,
OutputStream os)
Create a new stream pumper.
|
StreamPumper(InputStream is,
OutputStream os,
boolean closeWhenExhausted)
Create a new stream pumper.
|
StreamPumper(InputStream is,
OutputStream os,
boolean closeWhenExhausted,
boolean flushImmediately)
Create a new stream pumper.
|
StreamPumper(InputStream is,
OutputStream os,
boolean closeWhenExhausted,
int size)
Create a new stream pumper.
|
StreamPumper(InputStream is,
OutputStream os,
boolean closeWhenExhausted,
int size,
boolean flushImmediately)
Create a new stream pumper.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFinished()
Tells whether the end of the stream has been reached.
|
void |
run()
Copies data from the input stream to the output stream.
|
void |
waitFor()
This method blocks until the stream pumper finishes.
|
public StreamPumper(InputStream is, OutputStream os, boolean closeWhenExhausted, boolean flushImmediately)
is - input stream to read data fromos - output stream to write data to.closeWhenExhausted - if true, the output stream will be closed when the input is exhausted.flushImmediately - flush the output stream whenever data was written to itpublic StreamPumper(InputStream is, OutputStream os, boolean closeWhenExhausted, int size, boolean flushImmediately)
is - input stream to read data fromos - output stream to write data to.closeWhenExhausted - if true, the output stream will be closed when the input is exhausted.size - the size of the internal buffer for copying the streamsflushImmediately - flush the output stream whenever data was written to itpublic StreamPumper(InputStream is, OutputStream os, boolean closeWhenExhausted)
is - input stream to read data fromos - output stream to write data to.closeWhenExhausted - if true, the output stream will be closed when the input is exhausted.public StreamPumper(InputStream is, OutputStream os, boolean closeWhenExhausted, int size)
is - input stream to read data fromos - output stream to write data to.closeWhenExhausted - if true, the output stream will be closed when the input is exhausted.size - the size of the internal buffer for copying the streamspublic StreamPumper(InputStream is, OutputStream os)
is - input stream to read data fromos - output stream to write data to.public void run()
public boolean isFinished()
public void waitFor()
throws InterruptedException
InterruptedException - throws when the waiting is interruptedisFinished()Copyright © 2020 ZeroTurnaround. All rights reserved.