IMDS: trim down commit overhead
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / ForwardedReadyTransaction.java
1 /*
2  * Copyright (c) 2014 Brocade Communications 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.datastore.messages;
9
10 import org.opendaylight.controller.cluster.datastore.modification.Modification;
11 import org.opendaylight.controller.sal.core.spi.data.DOMStoreThreePhaseCommitCohort;
12
13 /**
14  * Transaction ReadyTransaction message that is forwarded to the local Shard from the ShardTransaction.
15  *
16  * @author Thomas Pantelis
17  */
18 public class ForwardedReadyTransaction {
19     private final String transactionID;
20     private final DOMStoreThreePhaseCommitCohort cohort;
21     private final Modification modification;
22     private final boolean returnSerialized;
23     private final boolean doImmediateCommit;
24     private final short txnClientVersion;
25
26     public ForwardedReadyTransaction(String transactionID, short txnClientVersion,
27             DOMStoreThreePhaseCommitCohort cohort, Modification modification,
28             boolean returnSerialized, boolean doImmediateCommit) {
29         this.transactionID = transactionID;
30         this.cohort = cohort;
31         this.modification = modification;
32         this.returnSerialized = returnSerialized;
33         this.txnClientVersion = txnClientVersion;
34         this.doImmediateCommit = doImmediateCommit;
35     }
36
37     public String getTransactionID() {
38         return transactionID;
39     }
40
41     public DOMStoreThreePhaseCommitCohort getCohort() {
42         return cohort;
43     }
44
45     public Modification getModification() {
46         return modification;
47     }
48
49     public boolean isReturnSerialized() {
50         return returnSerialized;
51     }
52
53     public short getTxnClientVersion() {
54         return txnClientVersion;
55     }
56
57     public boolean isDoImmediateCommit() {
58         return doImmediateCommit;
59     }
60 }