Class RotationWriter
- java.lang.Object
-
- java.io.Writer
-
- org.onebusaway.container.rotation.RotationWriter
-
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable
public class RotationWriter extends Writer
AWriterextension that supports rotating between different outputWriterobjects based on aRotationStrategy. Rotation will only occur after a call toflush().- Author:
- bdferris
- See Also:
RotationStrategy,TimeRotationStrategy
-
-
Constructor Summary
Constructors Constructor Description RotationWriter(RotationStrategy strategy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()voidwrite(char[] cbuf, int off, int len)
-
-
-
Constructor Detail
-
RotationWriter
public RotationWriter(RotationStrategy strategy) throws IOException
- Throws:
IOException
-
-
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
-
-