Package org.codehaus.groovy.runtime
Class FlushingStreamWriter
- java.lang.Object
- 
- java.io.Writer
- 
- java.io.OutputStreamWriter
- 
- org.codehaus.groovy.runtime.FlushingStreamWriter
 
 
 
- 
- All Implemented Interfaces:
- Closeable,- Flushable,- Appendable,- AutoCloseable
 
 public class FlushingStreamWriter extends OutputStreamWriter Stream writer which flushes after each write operation.
- 
- 
Constructor SummaryConstructors Constructor Description FlushingStreamWriter(OutputStream out)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwrite(char[] cbuf, int off, int len)voidwrite(int c)voidwrite(String str, int off, int len)- 
Methods inherited from class java.io.OutputStreamWriterappend, append, close, flush, getEncoding
 - 
Methods inherited from class java.io.Writerappend, nullWriter, write, write
 
- 
 
- 
- 
- 
Constructor Detail- 
FlushingStreamWriterpublic FlushingStreamWriter(OutputStream out) 
 
- 
 - 
Method Detail- 
writepublic void write(char[] cbuf, int off, int len) throws IOException- Overrides:
- writein class- OutputStreamWriter
- Throws:
- IOException
 
 - 
writepublic void write(int c) throws IOException- Overrides:
- writein class- OutputStreamWriter
- Throws:
- IOException
 
 - 
writepublic void write(String str, int off, int len) throws IOException - Overrides:
- writein class- OutputStreamWriter
- Throws:
- IOException
 
 
- 
 
-