java.io
Class PipedInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by java.io.PipedInputStream

public class PipedInputStream
extends InputStream


Field Summary
protected  byte[] buffer
           
protected  int in
           
protected  int out
           
protected static int PIPE_SIZE
           
 
Constructor Summary
PipedInputStream()
           
PipedInputStream(PipedOutputStream var0)
           
 
Method Summary
 void connect(PipedOutputStream var0)
           
 int read()
           
protected  void receive(int var0)
           
 
Methods inherited from class java.io.InputStream
available, close, mark, markSupported, read, read, reset, skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PIPE_SIZE

protected static final int PIPE_SIZE
See Also:
Constant Field Values

buffer

protected byte[] buffer

in

protected int in

out

protected int out
Constructor Detail

PipedInputStream

public PipedInputStream()

PipedInputStream

public PipedInputStream(PipedOutputStream var0)
                 throws IOException
Throws:
IOException
Method Detail

connect

public void connect(PipedOutputStream var0)
             throws IOException
Throws:
IOException

read

public int read()
         throws IOException
Specified by:
read in class InputStream
Throws:
IOException

receive

protected void receive(int var0)
                throws IOException
Throws:
IOException