PipedInputStream.PipedInputStream

PipedInputStream.PipedInputStream

Class Overview | Class Members | This Package | All Packages

Syntax 1
public PipedInputStream( PipedOutputStream src ) throws IOException
Parameters
src
the stream to connect to.
Description
Creates a piped input stream connected to the specified piped output stream.

Exceptions
IOException if an I/O error occurs.



Syntax 2
public PipedInputStream()
Description
Creates a piped input stream that is not yet connected to a piped output stream. It must be connected to a piped output stream, either by the receiver or the sender, before being used.

See Also
connect, connect