X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-common-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fcommon%2Fapi%2Fdata%2FTransactionChain.java;h=d542935dd6dbf0fdb91ce72b273d6bc9c87b2668;hb=8f15fef884bc20239625850c4a2fcdaf36395526;hp=ff3aa2e325af0146d5cd878ea9aed88c350d4a6c;hpb=2c7c9ef5e517de98e0d740f938762cc746dbcde1;p=controller.git diff --git a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/TransactionChain.java b/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/TransactionChain.java index ff3aa2e325..d542935dd6 100644 --- a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/TransactionChain.java +++ b/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/TransactionChain.java @@ -7,12 +7,14 @@ */ package org.opendaylight.controller.md.sal.common.api.data; +import org.opendaylight.yangtools.concepts.Path; + /** * A chain of transactions. Transactions in a chain need to be committed in sequence and each * transaction should see the effects of previous transactions as if they happened. A chain * makes no guarantees of atomicity, in fact transactions are committed as soon as possible. */ -public interface TransactionChain

*/, D> extends AutoCloseable { +public interface TransactionChain

, D> extends AutoCloseable { /** * Create a new transaction which will continue the chain. The previous transaction * has to be either COMMITTED or CANCELLED.