Interface SQLConnectionFunction<R>

Type Parameters:
R - the result type.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface SQLConnectionFunction<R>
A special consumer that takes a SQLConnection, but throws SQLExceptions.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(SQLConnection connection)
    Accepts the connection, does something with it, and returns a result.
  • Method Details

    • apply

      R apply(SQLConnection connection) throws SQLException
      Accepts the connection, does something with it, and returns a result.
      Parameters:
      connection - the open connection.
      Returns:
      the result from the call.
      Throws:
      SQLException - if a SQLException occurs.