| java.io.Flushable
All known Subclasses: java.io.OutputStream, java.io.Writer, java.io.Console,
Flushable | public interface Flushable (Code) | | A Flushable is a destination of data that can be flushed. The
flush method is invoked to write any buffered output to the underlying
stream.
version: 1.8 07/05/05 since: 1.5 |
Method Summary | |
void | flush() Flushes this stream by writing any buffered output to the underlying
stream. |
flush | void flush() throws IOException(Code) | | Flushes this stream by writing any buffered output to the underlying
stream.
throws: IOException - If an I/O error occurs |
|
|