Connects the given piped input steam to the specified sender piped output stream or connects the given piped output stream to the specified receiver piped input stream.
Syntax
connect( srcpipedstream , dstpipedstream )
srcpipedstream.connect( dstpipedstream )
Parameters
srcpipedstream
|
the piped stream object to connect.
|
dstpipedstream
|
the piped stream object to connect to.
|
Returns
Example
srcStream.connect( dstStream )
|