Package org.apache.commons.io.output
Class DemuxOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.commons.io.output.DemuxOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class DemuxOutputStream extends java.io.OutputStreamForwards data to a stream that has been associated with this thread.
-
-
Constructor Summary
Constructors Constructor Description DemuxOutputStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.OutputStreambindStream(java.io.OutputStream output)Binds the specified stream to the current thread.voidclose()Closes stream associated with current thread.voidflush()Flushes stream associated with current thread.voidwrite(int ch)Writes byte to stream associated with current thread.
-
-
-
Method Detail
-
bindStream
public java.io.OutputStream bindStream(java.io.OutputStream output)
Binds the specified stream to the current thread.- Parameters:
output- the stream to bind- Returns:
- the OutputStream that was previously active
-
close
public void close() throws java.io.IOExceptionCloses stream associated with current thread.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.OutputStream- Throws:
java.io.IOException- if an error occurs
-
flush
public void flush() throws java.io.IOExceptionFlushes stream associated with current thread.- Specified by:
flushin interfacejava.io.Flushable- Overrides:
flushin classjava.io.OutputStream- Throws:
java.io.IOException- if an error occurs
-
write
public void write(int ch) throws java.io.IOExceptionWrites byte to stream associated with current thread.- Specified by:
writein classjava.io.OutputStream- Parameters:
ch- the byte to write to stream- Throws:
java.io.IOException- if an error occurs
-
-