007ac53d9833105a93da672355ab9e289a22414c
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / actors / dds / DirectTransactionCommitCohort.java
1 /*
2  * Copyright (c) 2016 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.controller.cluster.databroker.actors.dds;
9
10 import com.google.common.base.Preconditions;
11 import com.google.common.util.concurrent.ListenableFuture;
12
13 /**
14  * An {@link AbstractTransactionCommitCohort} implementation for transactions which contain a single proxy. Since there
15  * is only one proxy,
16  *
17  * @author Robert Varga
18  */
19 final class DirectTransactionCommitCohort extends AbstractTransactionCommitCohort {
20     private final AbstractProxyTransaction proxy;
21
22     /**
23      * @param clientTransaction
24      */
25     DirectTransactionCommitCohort(final AbstractProxyTransaction proxy) {
26         this.proxy = Preconditions.checkNotNull(proxy);
27     }
28
29     @Override
30     public ListenableFuture<Boolean> canCommit() {
31         return proxy.directCommit();
32     }
33
34     @Override
35     public ListenableFuture<Void> preCommit() {
36         return VOID_FUTURE;
37     }
38
39     @Override
40     public ListenableFuture<Void> abort() {
41         return VOID_FUTURE;
42     }
43
44     @Override
45     public ListenableFuture<Void> commit() {
46         return VOID_FUTURE;
47     }
48 }