- All Superinterfaces:
ResultSetCallable<T>
,ResultSetCallableE<T,
,RuntimeException> ResultSetHandlerE<T,
RuntimeException>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Deprecated(forRemoval=true)
@FunctionalInterface
public interface ResultSetHandler<T>
extends ResultSetCallable<T>, ResultSetHandlerE<T,RuntimeException>
Deprecated, for removal: This API element is subject to removal in a future version.
Processes the results from a query. This is called only once, it is no longer row-by-row.
Iteration over the results is up to the implementation.
- Author:
- AO Industries, Inc.
-
Method Summary
Modifier and TypeMethodDescriptiondefault T
Deprecated, for removal: This API element is subject to removal in a future version.Process one set of results.handleResultSet
(ResultSet results) Deprecated, for removal: This API element is subject to removal in a future version.Process one set of results.
-
Method Details
-
call
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ResultSetCallable
Process one set of results.- Specified by:
call
in interfaceResultSetCallable<T>
- Specified by:
call
in interfaceResultSetCallableE<T,
RuntimeException> - Specified by:
call
in interfaceResultSetHandlerE<T,
RuntimeException> - Throws:
SQLException
-
handleResultSet
Deprecated, for removal: This API element is subject to removal in a future version.Process one set of results.- Specified by:
handleResultSet
in interfaceResultSetHandlerE<T,
RuntimeException> - Throws:
SQLException
-
ResultSetCallable
orResultSetRunnable