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 nestedTransactionalCallableobjects 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 nestedTransactionalCallableobjects in a single globalTransactionalCallable, collecting the callables' results.static <T> TransactionalCallable<T>TransactionalCallable. of(TransactionalCallable<T>... callables)Wrap a set of nestedTransactionalCallableobjects 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 nestedTransactionalCallableobjects 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 nestedTransactionalCallableobjects 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 nestedTransactionalCallableobjects in a single globalTransactionalCallable, collecting the callables' results.<T> TDSLContext. transactionResult(TransactionalCallable<T> transactional)Run aTransactionalCallablein 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 aTransactionalCallableasynchronously.<T> @NotNull CompletionStage<T>DSLContext. transactionResultAsync(TransactionalCallable<T> transactional)Run aTransactionalCallableasynchronously.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 nestedTransactionalCallableobjects 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 nestedTransactionalCallableobjects 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> TDefaultDSLContext. transactionResult(TransactionalCallable<T> transactional)<T> CompletionStage<T>DefaultDSLContext. transactionResultAsync(Executor executor, TransactionalCallable<T> transactional)<T> CompletionStage<T>DefaultDSLContext. transactionResultAsync(TransactionalCallable<T> transactional)
-