Interface ResultSetHandlerE<T,Ex extends Exception>

Type Parameters:
Ex - An arbitrary exception type that may be thrown
All Superinterfaces:
ResultSetCallableE<T,Ex>
All Known Subinterfaces:
ResultSetHandler<T>
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 ResultSetHandlerE<T,Ex extends Exception> extends ResultSetCallableE<T,Ex>
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 Type
    Method
    Description
    default T
    call(ResultSet results)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Process one set of results.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Process one set of results.