PipedInputStream
object by one thread and data is written to the corresponding PipedOutputStream
by some other thread. Attempting to use both objects from a single thread is not recommended, as it may deadlock the thread. The piped input stream contains a buffer, decoupling read operations from write operations, within limits.
@author James Gosling
@version 1.28, 07/07/98
@see java.io.PipedOutputStream
@since JDK1.0
|
|