Haarolean 2018-03-25 19:47:35 +03:00
parent 703c69b055
commit 32f65a506e
1 changed files with 9 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import java.io.OutputStream;
*/
public class FlushyOutputStream extends OutputStream {
private OutputStream base;
private boolean isClosed = false;
public FlushyOutputStream(OutputStream base) {
this.base = base;
@ -15,19 +16,27 @@ public class FlushyOutputStream extends OutputStream {
@Override
public void write(int b) throws IOException {
if(isClosed) return;
base.write(b);
base.flush();
}
@Override
public void write(byte[] b) throws IOException {
if(isClosed) return;
base.write(b);
base.flush();
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
if(isClosed) return;
base.write(b, off, len);
base.flush();
}
@Override
public void close() {
isClosed = true;
}
}