2f83695e200e3aacbbaf14dcbdf461f447906fc5
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / src / main / java / org / opendaylight / mdsal / dom / store / inmemory / ChainedTransactionCommitImpl.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.dom.store.inmemory;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.util.concurrent.ListenableFuture;
13 import org.opendaylight.mdsal.dom.spi.store.SnapshotBackedWriteTransaction;
14 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
15
16 final class ChainedTransactionCommitImpl extends InMemoryDOMStoreThreePhaseCommitCohort {
17     private final DOMStoreTransactionChainImpl txChain;
18
19     ChainedTransactionCommitImpl(final InMemoryDOMDataStore store,
20                                  final SnapshotBackedWriteTransaction<String> transaction,
21                                  final DataTreeModification modification,
22                                  final DOMStoreTransactionChainImpl txChain,
23                                  final Exception operationError) {
24         super(store, transaction, modification, operationError);
25         this.txChain = requireNonNull(txChain);
26     }
27
28     @Override
29     public ListenableFuture<Void> commit() {
30         ListenableFuture<Void> ret = super.commit();
31         txChain.transactionCommited(getTransaction());
32         return ret;
33     }
34
35 }