org.apache.avalon.excalibur.io
Class DemuxOutputStream
java.lang.Object
|
+--java.io.OutputStream
|
+--org.apache.avalon.excalibur.io.DemuxOutputStream
- public final class DemuxOutputStream
- extends OutputStream
Data written to this stream is forwarded to a stream that has been associated
with this thread.
- Version:
- $Revision: 1.4 $ $Date: 2002/05/10 02:51:14 $
- Author:
- Peter Donald
Method Summary |
OutputStream |
bindStream(OutputStream output)
Bind 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.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DemuxOutputStream
public DemuxOutputStream()
bindStream
public OutputStream bindStream(OutputStream output)
- Bind the specified stream to the current thread.
- Parameters:
output
- the stream to bind
close
public void close()
throws IOException
- Closes stream associated with current thread.
- Overrides:
close
in class OutputStream
- Throws:
IOException
- if an error occurs
flush
public void flush()
throws IOException
- Flushes stream associated with current thread.
- Overrides:
flush
in class OutputStream
- Throws:
IOException
- if an error occurs
write
public void write(int ch)
throws IOException
- Writes byte to stream associated with current thread.
- Overrides:
write
in class OutputStream
- Parameters:
ch
- the byte to write to stream- Throws:
IOException
- if an error occurs
"Copyright © 2000-2002 Apache Jakarta Project. All Rights Reserved."