Interface DatabaseQueryHelper.ResultSetIteratorCallback
- Enclosing class:
- DatabaseQueryHelper
public static interface DatabaseQueryHelper.ResultSetIteratorCallback
Callback interface for the
DatabaseQueryHelper.executeQueryStatement(Connection, String, ResultSetIteratorCallback)
method.-
Method Summary
Modifier and Type Method Description voidonError(Connection conn, Throwable t)On error.voidonQueryDone(Connection conn, List<NavigableMap<String,Object>> table)On query done.voidonRowConstruction(Connection conn, NavigableMap<String,Object> row)On row construction.
-
Method Details
-
onQueryDone
On query done.- Parameters:
conn- the conntable- the table
-
onRowConstruction
On row construction.- Parameters:
conn- the connrow- the row
-
onError
On error.- Parameters:
conn- the connt- the t
-