Package com.blackrook.sql.util
Interface SQLConnectionConsumer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A special consumer that takes a SQLConnection, but throws
SQLExceptions.-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(SQLConnection connection) Accepts the connection, does something with it, and returns nothing.
-
Method Details
-
accept
Accepts the connection, does something with it, and returns nothing.- Parameters:
connection- the open connection.- Throws:
SQLException- if a SQLException occurs.
-