Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public class PipedOutputStream extends OutputStream {
   // Public Constructors
      public PipedOutputStream(PipedInputStream snk) throws IOException;
      public PipedOutputStream();
   // Public Instance Methods
      public void close() throws IOException;  // Overrides OutputStream.close()
      public void connect(PipedInputStream snk) throws IOException;
      public synchronized void flush() throws IOException;  // Overrides OutputStream.flush()
      public void write(int b) throws IOException;  // Defines OutputStream.write()
      public void write(byte[] b, int off, int len) throws IOException;  // Overrides OutputStream.write()
}