Searched defs:PipedReader (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DPipedReader.java30 public class PipedReader extends Reader { class in inherits:Reader
79 * Constructs a new unconnected {@code PipedReader}. The resulting reader
83 public PipedReader() {} method in class:PipedReader
86 * Constructs a new {@code PipedReader} connected to the {@link PipedWriter}
95 public PipedReader(PipedWriter out) throws IOException { method in class:PipedReader
100 * Constructs a new unconnected {@code PipedReader} with the given buffer size.
108 public PipedReader(int pipeSize) { method in class:PipedReader
116 * Constructs a new {@code PipedReader} connected to the given {@code PipedWriter},
126 public PipedReader(PipedWriter out, int pipeSize) throws IOException { method in class:PipedReader
146 * Connects this {@code PipedReader} t
[all...]

Completed in 54 milliseconds