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

/libcore/luni/src/main/java/java/io/
H A DPipedInputStream.java29 public class PipedInputStream extends InputStream { class in inherits:InputStream
78 * Constructs a new unconnected {@code PipedInputStream}. The resulting
82 public PipedInputStream() {} method in class:PipedInputStream
85 * Constructs a new {@code PipedInputStream} connected to the
94 public PipedInputStream(PipedOutputStream out) throws IOException { method in class:PipedInputStream
99 * Constructs a new unconnected {@code PipedInputStream} with the given
107 public PipedInputStream(int pipeSize) { method in class:PipedInputStream
115 * Constructs a new {@code PipedInputStream} connected to the given {@code PipedOutputStream},
125 public PipedInputStream(PipedOutputStream out, int pipeSize) throws IOException { method in class:PipedInputStream
133 * <p>Unlike most streams, {@code PipedInputStream} return
[all...]

Completed in 36 milliseconds