Package org.apache.solr.common.util
Class FastWriter
- java.lang.Object
-
- java.io.Writer
-
- org.apache.solr.common.util.FastWriter
-
- All Implemented Interfaces:
Closeable
,Flushable
,Appendable
,AutoCloseable
public class FastWriter extends Writer
Single threaded BufferedWriter Internal Solr use only, subject to change.
-
-
Constructor Summary
Constructors Constructor Description FastWriter(Writer w)
FastWriter(Writer sink, char[] tempBuffer, int start)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FastWriter
append(char c)
void
close()
void
flush()
void
flush(char[] buf, int offset, int len)
void
flush(String str, int offset, int len)
void
flushBuffer()
static FastWriter
wrap(Writer sink)
void
write(char c)
void
write(char[] arr, int off, int len)
void
write(int c)
void
write(String str, int off, int len)
-
-
-
Field Detail
-
sink
protected final Writer sink
-
buf
protected char[] buf
-
pos
protected int pos
-
-
Method Detail
-
wrap
public static FastWriter wrap(Writer sink)
-
write
public void write(int c) throws IOException
- Overrides:
write
in classWriter
- Throws:
IOException
-
write
public void write(char c) throws IOException
- Throws:
IOException
-
append
public FastWriter append(char c) throws IOException
- Specified by:
append
in interfaceAppendable
- Overrides:
append
in classWriter
- Throws:
IOException
-
write
public void write(char[] arr, int off, int len) throws IOException
- Specified by:
write
in classWriter
- Throws:
IOException
-
write
public void write(String str, int off, int len) throws IOException
- Overrides:
write
in classWriter
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Specified by:
flush
in classWriter
- Throws:
IOException
-
flush
public void flush(char[] buf, int offset, int len) throws IOException
- Throws:
IOException
-
flush
public void flush(String str, int offset, int len) throws IOException
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classWriter
- Throws:
IOException
-
flushBuffer
public void flushBuffer() throws IOException
- Throws:
IOException
-
-