BUG-5280: move DataTreeCandidate serialization to its own class
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / TransactionContext.java
index ab636ff493c724c3daa4f69eea6d5fb7d591847c..765d5bb7eccb1e01ad320fa9b37a48673d9c1e24 100644 (file)
@@ -26,8 +26,6 @@ interface TransactionContext {
 
     <T> void executeRead(AbstractRead<T> readCmd, SettableFuture<T> promise);
 
-    boolean supportsDirectCommit();
-
     Future<Object> directCommit();
 
     /**
@@ -45,4 +43,6 @@ interface TransactionContext {
      * @return
      */
     boolean usesOperationLimiting();
+
+    short getTransactionVersion();
 }