@Beta public interface ManagedNewTransactionRunner extends ManagedTransactionFactory
ManagedNewTransactionRunnerImpl
, alternative implementation of this API with optional
retries is RetryingManagedNewTransactionRunner
.
This should typically be used (only) directly in code which really must be creating its own new transactions, such as RPC entry points, or background jobs. Other lower level code "behind" such entry points should just get handed over the transaction provided by this API.
Modifier and Type | Method and Description |
---|---|
<R> R |
applyWithNewTransactionChainAndClose(Function<ManagedTransactionChain,R> chainConsumer)
Invokes a function with a new
ManagedTransactionChain , which is a wrapper around standard transaction
chains providing managed semantics. |
applyInterruptiblyWithNewReadOnlyTransactionAndClose, applyWithNewReadOnlyTransactionAndClose, applyWithNewReadWriteTransactionAndSubmit, callInterruptiblyWithNewReadOnlyTransactionAndClose, callWithNewReadOnlyTransactionAndClose, callWithNewReadWriteTransactionAndSubmit, callWithNewWriteOnlyTransactionAndSubmit
<R> R applyWithNewTransactionChainAndClose(Function<ManagedTransactionChain,R> chainConsumer)
ManagedTransactionChain
, which is a wrapper around standard transaction
chains providing managed semantics. The transaction chain will be closed when the function returns.
This is an asynchronous API, like DataBroker
's own; when this method returns, the transactions in
the chain may well still be ongoing in the background, or pending. It is up to the consumer and
caller to agree on how failure will be handled; for example, the return type can include the futures
corresponding to the transactions in the chain. The implementation uses a default transaction chain listener
which logs an error if any of the transactions fail.
The MD-SAL transaction chain semantics are preserved: each transaction in the chain will see the results of the previous transactions in the chain, even if they haven't been fully committed yet; and any error will result in subsequent transactions in the chain not being submitted.
R
- The type of result returned by the function.chainConsumer
- The Function
that will build transactions in the transaction chain.Copyright © 2019 OpenDaylight. All rights reserved.