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 void
close()
void
writeEntry(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:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.io.IOException
-
-