edu.udo.cs.yale.tools.log
Class StreamMultiplier

java.lang.Object
  extended by java.io.OutputStream
      extended by edu.udo.cs.yale.tools.log.StreamMultiplier
All Implemented Interfaces:
java.io.Closeable, java.io.Flushable

public class StreamMultiplier
extends java.io.OutputStream

By using this multiplier all written content is multiplied to the given writers.

Version:
$Id: StreamMultiplier.java,v 1.1 2006/08/15 20:34:49 ingomierswa Exp $
Author:
Simon Fischer, Ingo Mierswa

Field Summary
private  java.io.OutputStream[] out
          The writers to write the contents to.
 
Constructor Summary
StreamMultiplier(java.io.OutputStream[] out)
          Creates a new writer multiplier.
 
Method Summary
 void close()
          Closes all writers.
 void flush()
          Flushes all writers.
 void write(int b)
          Implements the abstract method of the superclass.
 
Methods inherited from class java.io.OutputStream
write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

out

private java.io.OutputStream[] out
The writers to write the contents to.

Constructor Detail

StreamMultiplier

public StreamMultiplier(java.io.OutputStream[] out)
Creates a new writer multiplier.

Method Detail

write

public void write(int b)
           throws java.io.IOException
Implements the abstract method of the superclass.

Specified by:
write in class java.io.OutputStream
Throws:
java.io.IOException


close

public void close()
           throws java.io.IOException
Closes all writers.

Specified by:
close in interface java.io.Closeable
Overrides:
close in class java.io.OutputStream
Throws:
java.io.IOException


flush

public void flush()
           throws java.io.IOException
Flushes all writers.

Specified by:
flush in interface java.io.Flushable
Overrides:
flush in class java.io.OutputStream
Throws:
java.io.IOException



Copyright © 2001-2006