Interface ResultSetHandler<T>

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 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.