Expose completion future from WriteOperations
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / main / java / org / opendaylight / mdsal / binding / dom / adapter / BindingDOMWriteTransactionAdapter.java
index 016b781d59ccfbc5c0f1a1f0111e9b07a9d50834..565f070f46723b77fb8807f669eb93093199e5ba 100644 (file)
@@ -133,6 +133,11 @@ class BindingDOMWriteTransactionAdapter<T extends DOMDataTreeWriteTransaction> e
         return getDelegate().cancel();
     }
 
+    @Override
+    public FluentFuture<?> completionFuture() {
+        return getDelegate().completionFuture();
+    }
+
     /**
      * Subclasses of this class are required to implement creation of parent nodes based on behaviour of their
      * underlying transaction.