X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FForwardedReadyTransaction.java;h=2f48ab9d1be137562f170d354e7580b74e6b7da6;hb=3d460a8bcbc24eeb969319feb9c7bf16bff496c1;hp=4f8ea51f784ea2e0352eb6aedd8d1dc35469f0ef;hpb=b3c034675957f963c5878ce1e5e183ec2de8b5e2;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ForwardedReadyTransaction.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ForwardedReadyTransaction.java index 4f8ea51f78..2f48ab9d1b 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ForwardedReadyTransaction.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ForwardedReadyTransaction.java @@ -7,8 +7,8 @@ */ package org.opendaylight.controller.cluster.datastore.messages; +import org.opendaylight.controller.cluster.datastore.ShardDataTreeCohort; import org.opendaylight.controller.cluster.datastore.modification.Modification; -import org.opendaylight.controller.sal.core.spi.data.DOMStoreThreePhaseCommitCohort; /** * Transaction ReadyTransaction message that is forwarded to the local Shard from the ShardTransaction. @@ -17,25 +17,44 @@ import org.opendaylight.controller.sal.core.spi.data.DOMStoreThreePhaseCommitCoh */ public class ForwardedReadyTransaction { private final String transactionID; - private final DOMStoreThreePhaseCommitCohort cohort; + private final ShardDataTreeCohort cohort; private final Modification modification; + private final boolean returnSerialized; + private final boolean doImmediateCommit; + private final short txnClientVersion; - public ForwardedReadyTransaction(String transactionID, DOMStoreThreePhaseCommitCohort cohort, - Modification modification) { + public ForwardedReadyTransaction(String transactionID, short txnClientVersion, + ShardDataTreeCohort cohort, Modification modification, + boolean returnSerialized, boolean doImmediateCommit) { this.transactionID = transactionID; this.cohort = cohort; this.modification = modification; + this.returnSerialized = returnSerialized; + this.txnClientVersion = txnClientVersion; + this.doImmediateCommit = doImmediateCommit; } public String getTransactionID() { return transactionID; } - public DOMStoreThreePhaseCommitCohort getCohort() { + public ShardDataTreeCohort getCohort() { return cohort; } public Modification getModification() { return modification; } + + public boolean isReturnSerialized() { + return returnSerialized; + } + + public short getTxnClientVersion() { + return txnClientVersion; + } + + public boolean isDoImmediateCommit() { + return doImmediateCommit; + } }