Package com.redwood.scheduler.api.model
Interface APIResultSetPostExecuteCallback
- 
- All Known Implementing Classes:
- InternalToolResultSet
 
 public interface APIResultSetPostExecuteCallback
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostExecute(ResultSet rs)Process the result set before the initial ResultSet.next() is called.
 
- 
- 
- 
Method Detail- 
postExecutevoid postExecute(ResultSet rs) throws SQLException, InterruptedException Process the result set before the initial ResultSet.next() is called. This should be used to handle the cases where the result set is empty but result information is still required - e.g. displaying the headers for an empty result.- Parameters:
- rs- the ResultSet row to process
- Throws:
- SQLException- if an error occurs.
- InterruptedException
 
 
- 
 
-