connect() private méthode

private connect ( PipedInputStream snk ) : void
snk PipedInputStream
Résultat void
 /**
  * Causes this piped input stream to be connected
  * to the piped  output stream <code>src</code>.
  * If this object is already connected to some
  * other piped output  stream, an <code>IOException</code>
  * is thrown.
  * <p>
  * If <code>src</code> is an
  * unconnected piped output stream and <code>snk</code>
  * is an unconnected piped input stream, they
  * may be connected by either the call:
  * <p>
  * <pre><code>snk.connect(src)</code> </pre>
  * <p>
  * or the call:
  * <p>
  * <pre><code>src.connect(snk)</code> </pre>
  * <p>
  * The two
  * calls have the same effect.
  *
  * @param      src   The piped output stream to connect to.
  * @exception  IOException  if an I/O error occurs.
  */
 public virtual void connect(PipedOutputStream src)
 {
     src.connect(this);
 }
Exemple #2
0
        /**
         * Causes this piped input stream to be connected
         * to the piped  output stream <code>src</code>.
         * If this object is already connected to some
         * other piped output  stream, an <code>IOException</code>
         * is thrown.
         * <p>
         * If <code>src</code> is an
         * unconnected piped output stream and <code>snk</code>
         * is an unconnected piped input stream, they
         * may be connected by either the call:
         * <p>
         * <pre><code>snk.connect(src)</code> </pre>
         * <p>
         * or the call:
         * <p>
         * <pre><code>src.connect(snk)</code> </pre>
         * <p>
         * The two
         * calls have the same effect.
         *
         * @param      src   The piped output stream to connect to.
         * @exception  IOException  if an I/O error occurs.
         */

        public virtual void connect(PipedOutputStream src)
        {
            src.connect(this);
        }