Flush the stream. If the stream has saved any characters from the various write() methods in a buffer, write them immediately to their intended destination. Then, if that destination is another character or byte stream, flush it. Thus one flush() invocation will flush all the buffers in a chain of W
()
| 56 | * Flush the stream. If the stream has saved any characters from the various write() methods in a buffer, write them immediately to their intended destination. Then, if that destination is another character or byte stream, flush it. Thus one flush() invocation will flush all the buffers in a chain of Writers and OutputStreams. |
| 57 | */ |
| 58 | public abstract void flush() throws java.io.IOException; |
| 59 | |
| 60 | /** |
| 61 | * Write an array of characters. |
no outgoing calls
no test coverage detected