diff --git a/content/en/documentation/pro/transactions.md b/content/en/documentation/pro/transactions.md index 9edcbce..42878df 100644 --- a/content/en/documentation/pro/transactions.md +++ b/content/en/documentation/pro/transactions.md @@ -33,9 +33,12 @@ public void createUserAndSendWelcomeEmail(User user) {
Thanks to the @Transactional support, the whole method - including the job scheduling - is transactional. +
+> Also works with Exposed's transaction block! + #### How does it work? - the JobRunr Spring Boot Starter and Micronaut Integration, Quarkus Extension, Exposed Plugin check whether they can participate in a transaction created by that framework. - if one is present, it is used and the whole method is transactional.