- java.lang.Object
- 
- java.io.Writer
- 
- org.apache.johnzon.core.io.BoundedOutputStreamWriter
 
 
- 
- All Implemented Interfaces:
- java.io.Closeable,- java.io.Flushable,- java.lang.Appendable,- java.lang.AutoCloseable
 
 public class BoundedOutputStreamWriter extends java.io.WriterOutputStreamWriterdelegating directly to a sun.nio.cs.StreamEncoder with a controlled underlying buffer size. It enables to wrap anOutputStreamas aWriterbut with a faster feedback than a defaultOutputStreamWriterwhich uses a 8k buffer by default (encapsulated).Note: the "flush error" can be of 2 characters (lcb in StreamEncoder) but we can't do much better when encoding. 
- 
- 
Field SummaryFields Modifier and Type Field Description private java.io.Writerdelegate
 - 
Constructor SummaryConstructors Constructor Description BoundedOutputStreamWriter(java.io.OutputStream outputStream, java.nio.charset.Charset charset, int maxSize)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.Writerappend(char c)java.io.Writerappend(java.lang.CharSequence csq)java.io.Writerappend(java.lang.CharSequence csq, int start, int end)voidclose()voidflush()voidwrite(char[] cbuf)voidwrite(char[] chars, int off, int len)voidwrite(int c)voidwrite(java.lang.String str)voidwrite(java.lang.String str, int off, int len)
 
- 
- 
- 
Method Detail- 
writepublic void write(int c) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
writepublic void write(char[] chars, int off, int len) throws java.io.IOException- Specified by:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
writepublic void write(java.lang.String str, int off, int len) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
flushpublic void flush() throws java.io.IOException- Specified by:
- flushin interface- java.io.Flushable
- Specified by:
- flushin class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
closepublic void close() throws java.io.IOException- Specified by:
- closein interface- java.lang.AutoCloseable
- Specified by:
- closein interface- java.io.Closeable
- Specified by:
- closein class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
writepublic void write(char[] cbuf) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
writepublic void write(java.lang.String str) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
appendpublic java.io.Writer append(java.lang.CharSequence csq) throws java.io.IOException- Specified by:
- appendin interface- java.lang.Appendable
- Overrides:
- appendin class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
appendpublic java.io.Writer append(java.lang.CharSequence csq, int start, int end) throws java.io.IOException- Specified by:
- appendin interface- java.lang.Appendable
- Overrides:
- appendin class- java.io.Writer
- Throws:
- java.io.IOException
 
 - 
appendpublic java.io.Writer append(char c) throws java.io.IOException- Specified by:
- appendin interface- java.lang.Appendable
- Overrides:
- appendin class- java.io.Writer
- Throws:
- java.io.IOException
 
 
- 
 
-