PipedOutputStream.PipedOutputStream

PipedOutputStream.PipedOutputStream

Class Overview | Class Members | This Package | All Packages

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

Exceptions
IOException if an I/O error occurs.



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

See Also
connect, connect