Uses of Interface
org.jooq.TransactionalCallable
-
Packages that use TransactionalCallable Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of TransactionalCallable in org.jooq
Methods in org.jooq that return TransactionalCallable Modifier and Type Method Description static <T> TransactionalCallable<T>
TransactionalCallable. of(Collection<? extends TransactionalCallable<T>> callables)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, returning the last callable's result.static <T,R>
TransactionalCallable<R>TransactionalCallable. of(Collection<? extends TransactionalCallable<T>> callables, Collector<T,?,R> collector)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, collecting the callables' results.static <T> TransactionalCallable<T>
TransactionalCallable. of(TransactionalCallable<T>... callables)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, returning the last callable's result.static <T,R>
TransactionalCallable<R>TransactionalCallable. of(TransactionalCallable<T>[] callables, Collector<T,?,R> collector)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, collecting the callables' results.Methods in org.jooq with parameters of type TransactionalCallable Modifier and Type Method Description static <T> TransactionalCallable<T>
TransactionalCallable. of(TransactionalCallable<T>... callables)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, returning the last callable's result.static <T,R>
TransactionalCallable<R>TransactionalCallable. of(TransactionalCallable<T>[] callables, Collector<T,?,R> collector)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, collecting the callables' results.<T> T
DSLContext. transactionResult(TransactionalCallable<T> transactional)
Run aTransactionalCallable
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.Method parameters in org.jooq with type arguments of type TransactionalCallable Modifier and Type Method Description static <T> TransactionalCallable<T>
TransactionalCallable. of(Collection<? extends TransactionalCallable<T>> callables)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, returning the last callable's result.static <T,R>
TransactionalCallable<R>TransactionalCallable. of(Collection<? extends TransactionalCallable<T>> callables, Collector<T,?,R> collector)
Wrap a set of nestedTransactionalCallable
objects in a single globalTransactionalCallable
, collecting the callables' results. -
Uses of TransactionalCallable in org.jooq.impl
Methods in org.jooq.impl with parameters of type TransactionalCallable Modifier and Type Method Description <T> T
DefaultDSLContext. transactionResult(TransactionalCallable<T> transactional)
<T> CompletionStage<T>
DefaultDSLContext. transactionResultAsync(Executor executor, TransactionalCallable<T> transactional)
<T> CompletionStage<T>
DefaultDSLContext. transactionResultAsync(TransactionalCallable<T> transactional)
-