Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.PipedWriter

Availability: JDK 1.1

public class PipedWriter extends Writer {
   // Public Constructors
      public PipedWriter();
      public PipedWriter(PipedReader sink) throws IOException;
   // Public Instance Methods
      public void close() throws IOException;  // Defines Writer.close()
      public void connect(PipedReader sink) throws IOException;
      public void flush() throws IOException;  // Defines Writer.flush()
      public void write(char[] cbuf, int off, int len) throws IOException;  // Defines Writer.write()
}
Passed To:
PipedReader.connect(), PipedReader.PipedReader().

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