Package org.apache.commons.io.output
Class DemuxOutputStream
java.lang.Object
java.io.OutputStream
org.apache.commons.io.output.DemuxOutputStream
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
Forwards data to a stream that has been associated with this thread.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbindStream
(OutputStream output) Binds the specified stream to the current thread.void
close()
Closes stream associated with current thread.void
flush()
Flushes stream associated with current thread.void
write
(int ch) Writes byte to stream associated with current thread.Methods inherited from class java.io.OutputStream
write, write
-
Constructor Details
-
DemuxOutputStream
public DemuxOutputStream()
-
-
Method Details
-
bindStream
Binds the specified stream to the current thread.- Parameters:
output
- the stream to bind- Returns:
- the OutputStream that was previously active
-
close
Closes stream associated with current thread.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
- if an error occurs
-
flush
Flushes stream associated with current thread.- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
- if an error occurs
-
write
Writes byte to stream associated with current thread.- Specified by:
write
in classOutputStream
- Parameters:
ch
- the byte to write to stream- Throws:
IOException
- if an error occurs
-