Interface KvEntryFileWriter
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable
- All Known Implementing Classes:
BufferFileEntryBuilder,HgkvDirBuilderImpl
public interface KvEntryFileWriter extends java.io.Closeable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfinish()Finish build file.voidwrite(KvEntry entry)Write kvEntry to file.
-
-
-
Method Detail
-
write
void write(KvEntry entry) throws java.io.IOException
Write kvEntry to file.- Throws:
java.io.IOException
-
finish
void finish() throws java.io.IOExceptionFinish build file. You can release resources or do some aftercare in this method.- Throws:
java.io.IOException
-
-