Package java.io
Class PipedOutputStream

Public Method flush

void flush()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

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

Example

   PipedOutputStream pos = new PipedOutputStream();
   ...
   pos.flush();

The example above flushes the piped output stream.