Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
void |
DSLContext.transaction(ContextTransactionalRunnable transactional)
Run a
ContextTransactionalRunnable in the context of this
DSLContext 's underlying Scope.configuration() 's
Configuration.transactionProvider() . |
java.util.concurrent.CompletionStage<java.lang.Void> |
DSLContext.transactionAsync(java.util.concurrent.Executor executor,
TransactionalRunnable transactional)
Run a
TransactionalRunnable asynchronously. |
java.util.concurrent.CompletionStage<java.lang.Void> |
DSLContext.transactionAsync(TransactionalRunnable transactional)
Run a
TransactionalRunnable asynchronously. |
<T> T |
DSLContext.transactionResult(ContextTransactionalCallable<T> transactional)
Run a
ContextTransactionalRunnable in the context of this
DSLContext 's underlying Scope.configuration() 's
Configuration.transactionProvider() , and return the
transactional 's outcome. |
<T> java.util.concurrent.CompletionStage<T> |
DSLContext.transactionResultAsync(java.util.concurrent.Executor executor,
TransactionalCallable<T> transactional)
Run a
TransactionalCallable asynchronously. |
<T> java.util.concurrent.CompletionStage<T> |
DSLContext.transactionResultAsync(TransactionalCallable<T> transactional)
Run a
TransactionalCallable asynchronously. |
Copyright © 2018. All Rights Reserved.