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

/libcore/luni/src/main/java/java/io/
H A DPipedInputStream.java30 public class PipedInputStream extends InputStream { class in inherits:InputStream
79 * Constructs a new unconnected {@code PipedInputStream}. The resulting
83 public PipedInputStream() {} method in class:PipedInputStream
86 * Constructs a new {@code PipedInputStream} connected to the
95 public PipedInputStream(PipedOutputStream out) throws IOException { method in class:PipedInputStream
100 * Constructs a new unconnected {@code PipedInputStream} with the given
108 public PipedInputStream(int pipeSize) { method in class:PipedInputStream
116 * Constructs a new {@code PipedInputStream} connected to the given {@code PipedOutputStream},
126 public PipedInputStream(PipedOutputStream out, int pipeSize) throws IOException { method in class:PipedInputStream
134 * <p>Unlike most streams, {@code PipedInputStream} return
[all...]

Completed in 86 milliseconds