Package java.io
Class PipedReader

Public Method close

void close()

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method closes this piped stream and releases any system resources associated with this stream.

Example

   PipedReader pr = new PipedReader();
   PipedWriter pw = new PipedReader(pr);
   pr.close();
   pw.close();

The close method closes the piped reader and writer stream.