Package org.jdbi.v3.sqlobject.transaction
sqlobject.transaction annotations declaratively create transactions
wrapping a SqlObject method. Transactions are committed before the SqlObject
method finishes execution.
-
Interface Summary Interface Description Transactional<This extends Transactional<This>> A mixin interface to expose transaction methods on the sql object.TransactionalCallback<R,T extends Transactional<T>,X extends Exception> Callback that expects an open transaction and produces a result.TransactionalConsumer<T extends Transactional<T>,X extends Exception> Callback that expects an open transaction and returns no results. -
Annotation Types Summary Annotation Type Description Transaction Causes the annotated method to be run in a transaction.