Uses of Interface
org.jooq.TransactionalRunnable
-
Packages that use TransactionalRunnable Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of TransactionalRunnable in org.jooq
Methods in org.jooq with parameters of type TransactionalRunnable Modifier and Type Method Description void
DSLContext. transaction(TransactionalRunnable transactional)
Run aTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.CompletionStage<Void>
DSLContext. transactionAsync(Executor executor, TransactionalRunnable transactional)
Run aTransactionalRunnable
asynchronously.CompletionStage<Void>
DSLContext. transactionAsync(TransactionalRunnable transactional)
Run aTransactionalRunnable
asynchronously. -
Uses of TransactionalRunnable in org.jooq.impl
Methods in org.jooq.impl with parameters of type TransactionalRunnable Modifier and Type Method Description void
DefaultDSLContext. transaction(TransactionalRunnable transactional)
CompletionStage<Void>
DefaultDSLContext. transactionAsync(Executor executor, TransactionalRunnable transactional)
CompletionStage<Void>
DefaultDSLContext. transactionAsync(TransactionalRunnable transactional)
-