Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class PipedReader extends Reader {
   // Public Constructors
      public PipedReader();
      public PipedReader(PipedWriter src) throws IOException;
   // Public Instance Methods
      public void close() throws IOException;  // Defines Reader.close()
      public void connect(PipedWriter src) throws IOException;
      public int read(char[] cbuf, int off, int len) throws IOException;  // Defines Reader.read()
}