Uses of Interface
org.jooq.TransactionalRunnable
Packages that use TransactionalRunnable
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of TransactionalRunnable in org.jooq
Methods in org.jooq that return TransactionalRunnableModifier and TypeMethodDescriptionstatic TransactionalRunnable
TransactionalRunnable.of
(Collection<? extends TransactionalRunnable> runnables) Wrap a set of nestedTransactionalRunnable
objects in a single globalTransactionalRunnable
.static TransactionalRunnable
TransactionalRunnable.of
(TransactionalRunnable... runnables) Wrap a set of nestedTransactionalRunnable
objects in a single globalTransactionalRunnable
.Methods in org.jooq with parameters of type TransactionalRunnableModifier and TypeMethodDescriptionstatic TransactionalRunnable
TransactionalRunnable.of
(TransactionalRunnable... runnables) Wrap a set of nestedTransactionalRunnable
objects in a single globalTransactionalRunnable
.void
DSLContext.transaction
(TransactionalRunnable transactional) Run aTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.void
DSLContext.transaction
(TransactionalRunnable transactional, TransactionProperty... properties) Run aTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.@NotNull CompletionStage
<Void> DSLContext.transactionAsync
(Executor executor, TransactionalRunnable transactional) Run aTransactionalRunnable
asynchronously.@NotNull CompletionStage
<Void> DSLContext.transactionAsync
(Executor executor, TransactionalRunnable transactional, TransactionProperty... properties) Run aTransactionalRunnable
asynchronously.@NotNull CompletionStage
<Void> DSLContext.transactionAsync
(TransactionalRunnable transactional) Run aTransactionalRunnable
asynchronously.@NotNull CompletionStage
<Void> DSLContext.transactionAsync
(TransactionalRunnable transactional, TransactionProperty... properties) Run aTransactionalRunnable
asynchronously.Method parameters in org.jooq with type arguments of type TransactionalRunnableModifier and TypeMethodDescriptionstatic TransactionalRunnable
TransactionalRunnable.of
(Collection<? extends TransactionalRunnable> runnables) Wrap a set of nestedTransactionalRunnable
objects in a single globalTransactionalRunnable
. -
Uses of TransactionalRunnable in org.jooq.impl
Methods in org.jooq.impl with parameters of type TransactionalRunnableModifier and TypeMethodDescriptionvoid
DefaultDSLContext.transaction
(TransactionalRunnable transactional) void
DefaultDSLContext.transaction
(TransactionalRunnable transactional, TransactionProperty... properties) DefaultDSLContext.transactionAsync
(Executor executor, TransactionalRunnable transactional) DefaultDSLContext.transactionAsync
(Executor executor, TransactionalRunnable transactional, TransactionProperty... properties) DefaultDSLContext.transactionAsync
(TransactionalRunnable transactional) DefaultDSLContext.transactionAsync
(TransactionalRunnable transactional, TransactionProperty... properties)