Package com.blackrook.sql.util
Interface SQLTransactionConsumer
- 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 SQLTransaction, but throws
SQLException
s.-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(SQLConnection.Transaction transaction) Accepts the transaction, does something with it, and returns nothing.
-
Method Details
-
accept
Accepts the transaction, does something with it, and returns nothing.- Parameters:
transaction
- the open connection.- Throws:
SQLException
- if a SQLException occurs.
-