Package io.micronaut.transaction
Interface TransactionCallback<T,R>
- Type Parameters:
T
- The connection typeR
- The return type
- All Superinterfaces:
Function<TransactionStatus<T>,
R>
- 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 TransactionCallback<T,R>
extends Function<TransactionStatus<T>,R>
A functional interface for running code that runs within the context of a transaction.
- Author:
- graemerocher
-
Method Summary
Modifier and TypeMethodDescriptiondefault R
apply
(TransactionStatus<T> status) call
(@NonNull TransactionStatus<T> status) Code that runs within the context of a transaction will implement this method.