Class java.io.PipedOutputStream (1.0)


public class PipedOutputStream extends OutputStream {
  // Public Constructors
    public PipedOutputStream(PipedInputStream snk) throws IOException;
    public PipedOutputStream( );  // Empty
  // Public Instance Methods
    public void close( ) throws IOException;  // Overrides OutputStream.close( )
    public void connect(PipedInputStream snk) throws IOException;
    public synchronized void flush( ) throws IOException;  // Overrides OutputStream.flush( )
    public void write(int b) throws IOException;  // Defines OutputStream.write( )
    public void write(byte[ ] b, int off, int len) throws IOException;  // Overrides OutputStream.write( )
}