Package com.avoka.fc.core.click
Class CdnWriter
- java.lang.Object
-
- java.io.Writer
-
- com.avoka.fc.core.click.CdnWriter
-
- All Implemented Interfaces:
Closeable
,Flushable
,Appendable
,AutoCloseable
public class CdnWriter extends Writer
Provides Cdn Writer class to do cdn url replacement.
-
-
Constructor Summary
Constructors Constructor Description CdnWriter(PrintWriter writer, String cdnUrl)
Instantiates a new cdn writer.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
void
write(char[] cbuf, int off, int len)
-
-
-
Constructor Detail
-
CdnWriter
public CdnWriter(PrintWriter writer, String cdnUrl)
Instantiates a new cdn writer.- Parameters:
writer
- the writercdnUrl
- the cdn url
-
-
Method Detail
-
write
public void write(char[] cbuf, int off, int len) throws IOException
- Specified by:
write
in classWriter
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Specified by:
flush
in classWriter
- 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
-
-