Interface LargeFileWriter<T>
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
ObjectEntryLargeFileWriter
public interface LargeFileWriter<T> extends java.lang.AutoCloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()voidwriteEntry(T entry)
-
-
-
Method Detail
-
writeEntry
void writeEntry(T entry) throws java.io.IOException
- Throws:
java.io.IOException
-
close
void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Throws:
java.io.IOException
-
-