-
- All Superinterfaces:
AutoCloseable
public interface RowWriter<T> extends AutoCloseable
ARowWriterwrites a set of elements (a row) to an external destination.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwriteNext(T aData)Writes the next element.-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
writeNext
void writeNext(T aData) throws IOException
Writes the next element.- Parameters:
aData- The data to be written- Throws:
IOException- thrown in case there was an I/O related problem.
-
-