Ensures that all pending data is sent out to the target stream. This implementation flushes the target stream. @throws IOException if an error occurs attempting to flush this stream.
()
| 84 | * if an error occurs attempting to flush this stream. |
| 85 | */ |
| 86 | @Override |
| 87 | public void flush() throws IOException { |
| 88 | out.flush(); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Writes the entire contents of the byte array {@code buffer} to this |