Uses of Class
org.jooq.exception.ConfigurationException
-
Uses of ConfigurationException in org.jooq
Modifier and TypeMethodDescriptionvoid
DSLContext.transaction(ContextTransactionalRunnable transactional)
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(TransactionalRunnable transactional)
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> @NotNull CompletionStage<T>
DSLContext.transactionResultAsync(Executor executor, TransactionalCallable<T> transactional)
Run aTransactionalCallable
asynchronously.<T> @NotNull CompletionStage<T>
DSLContext.transactionResultAsync(TransactionalCallable<T> transactional)
Run aTransactionalCallable
asynchronously.