Uses of Class
org.jooq.exception.ConfigurationException
Packages that use ConfigurationException
-
Uses of ConfigurationException in org.jooq
Methods in org.jooq that throw ConfigurationExceptionModifier and TypeMethodDescriptionvoid
DSLContext.transaction
(ContextTransactionalRunnable transactional) Run aContextTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.void
DSLContext.transaction
(ContextTransactionalRunnable transactional, TransactionProperty... properties) Run aContextTransactionalRunnable
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.<T> T
DSLContext.transactionResult
(ContextTransactionalCallable<T> transactional) Run aContextTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and return thetransactional
's outcome.<T> T
DSLContext.transactionResult
(ContextTransactionalCallable<T> transactional, TransactionProperty... properties) Run aContextTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and return thetransactional
's outcome.<T> @NotNull CompletionStage
<T> DSLContext.transactionResultAsync
(Executor executor, TransactionalCallable<T> transactional) Run aTransactionalCallable
asynchronously.<T> @NotNull CompletionStage
<T> DSLContext.transactionResultAsync
(Executor executor, TransactionalCallable<T> transactional, TransactionProperty... properties) Run aTransactionalCallable
asynchronously.<T> @NotNull CompletionStage
<T> DSLContext.transactionResultAsync
(TransactionalCallable<T> transactional) Run aTransactionalCallable
asynchronously.<T> @NotNull CompletionStage
<T> DSLContext.transactionResultAsync
(TransactionalCallable<T> transactional, TransactionProperty... properties) Run aTransactionalCallable
asynchronously.