Package | Description |
---|---|
java.io |
Input/Output support
|
Modifier and Type | Method and Description |
---|---|
void |
PipedInputStream.connect(PipedOutputStream source)
This method connects this stream to the passed in
PipedOutputStream . |
Constructor and Description |
---|
PipedInputStream(PipedOutputStream source)
This constructor creates a new
PipedInputStream and connects
it to the passed in PipedOutputStream . |
PipedInputStream(PipedOutputStream source,
int pipeSize)
This constructor creates a new
PipedInputStream of the given
size and connects it to the passed in PipedOutputStream . |