Class StringWriterProxy
- java.lang.Object
-
- java.io.Writer
-
- fish.payara.healthcheck.microprofile.metrics.StringWriterProxy
-
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable
public class StringWriterProxy extends Writer
A string writer that supports clearing the result. The heavy synchronization may be a performance issue, but for now it makes sure that this class works concurrently.
-
-
Constructor Summary
Constructors Constructor Description StringWriterProxy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()voidclose()voidflush()StringtoString()voidwrite(char[] cbuf, int off, int len)
-
-
-
Method Detail
-
write
public void write(char[] cbuf, int off, int len) throws IOException- Specified by:
writein classWriter- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Specified by:
flushin classWriter- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classWriter- Throws:
IOException
-
clear
public void clear()
-
-