Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.PipedOutputStream

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()
}
Passed To:
PipedInputStream.connect(), PipedInputStream.PipedInputStream().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.