use of org.opendaylight.controller.md.sal.common.api.data.TransactionChain in project openflowplugin by opendaylight.
the class TransactionChainManager method createTxChain.
@GuardedBy("txLock")
private void createTxChain() {
BindingTransactionChain txChainFactoryTemp = transactionChain;
transactionChain = dataBroker.createTransactionChain(TransactionChainManager.this);
Optional.ofNullable(txChainFactoryTemp).ifPresent(TransactionChain::close);
}
Aggregations