public abstract class AbstractWrappedOutputStream extends OutputStream
Modifier and Type | Field and Description |
---|---|
protected boolean |
allowFlush |
protected OutputStream |
wrappedStream |
protected boolean |
written |
Modifier | Constructor and Description |
---|---|
protected |
AbstractWrappedOutputStream() |
protected |
AbstractWrappedOutputStream(OutputStream os) |
Modifier and Type | Method and Description |
---|---|
void |
allowFlush(boolean b) |
void |
close() |
void |
flush() |
protected void |
onFirstWrite() |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
protected OutputStream wrappedStream
protected boolean written
protected boolean allowFlush
protected AbstractWrappedOutputStream()
protected AbstractWrappedOutputStream(OutputStream os)
public void write(byte[] b, int off, int len) throws IOException
write
in class OutputStream
IOException
protected void onFirstWrite() throws IOException
IOException
public void write(byte[] b) throws IOException
write
in class OutputStream
IOException
public void write(int b) throws IOException
write
in class OutputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class OutputStream
IOException
public void flush() throws IOException
flush
in interface Flushable
flush
in class OutputStream
IOException
public void allowFlush(boolean b)
Apache CXF