Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.PipedReader

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

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