Package org.killbill.billing.util.api
Interface DatabaseExportOutputStream
-
public interface DatabaseExportOutputStream
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnewTable(String tableName, List<ColumnInfo> columnsForTable)Notify the stream that the following data is for a different tablevoidwrite(Map<String,Object> row)Write one row of data
-
-
-
Method Detail
-
newTable
void newTable(String tableName, List<ColumnInfo> columnsForTable)
Notify the stream that the following data is for a different table- Parameters:
tableName- the following table namecolumnsForTable- database columns
-
write
void write(Map<String,Object> row) throws IOException
Write one row of data- Parameters:
row- row of data- Throws:
IOException- generic IOException
-
-