Hi,

I have created two WriteTransactions from a TransactionChain instance. If I 
block using the checkGet() on checkedFuture after submit on the first 
transaction, will there be any impacts on the other transaction apart from the 
performance deterioration ?

BindingTransactionChain bindingTransactionChain = 
dataBroker.createTransactionChain(listener);
WriteTransaction writeTxn1 = bindingTransactionChain.newWriteOnlyTransaction();
WriteTransaction writeTxn2 = bindingTransactionChain.newWriteOnlyTransaction();
writeTxn1.put()
writeTxn2.put()
CheckedFuture<> checkedFuture = writeTxn1.submit()
checkedFuture.checkedGet()
writeTxn2.submit()

Regards
-Satish
_______________________________________________
controller-dev mailing list
controller-dev@lists.opendaylight.org
https://lists.opendaylight.org/mailman/listinfo/controller-dev

Reply via email to