Example usage for Java java.io PipedReader fields, constructors, methods, implement or subclass
The text is from its open source code.
PipedReader() Creates a PipedReader so that it is not yet #connect(java.io.PipedWriter) connected . | |
PipedReader(PipedWriter src) Creates a PipedReader so that it is connected to the piped writer src . | |
PipedReader(int pipeSize) Creates a PipedReader so that it is not yet #connect(java.io.PipedWriter) connected and uses the specified pipe size for the pipe's buffer. | |
PipedReader(PipedWriter src, int pipeSize) Creates a PipedReader so that it is connected to the piped writer src and uses the specified pipe size for the pipe's buffer. |
void | close() Closes this piped stream and releases any system resources associated with the stream. |
void | connect(PipedWriter src) Causes this piped reader to be connected to the piped writer src . |
int | read() Reads the next character of data from this piped stream. |
int | read(char cbuf[], int off, int len) Reads up to len characters of data from this piped stream into an array of characters. |
boolean | ready() Tell whether this stream is ready to be read. |