Package java.io
Class PipedWriter

Public Method flush

void flush()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method flusehes this piped stream and forces any buffered output characters to be written out. This will notify any readers that characters are waiting in the pipe.

Example

   PipedWriter pw = new PipedWriter();
   ...
   pw.flush();

The example above flushes the piped writer stream.