Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / TransactionPreCommitSuccess.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.access.commands;
9
10 import org.opendaylight.controller.cluster.access.ABIVersion;
11 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
12
13 /**
14  * Successful reply to a {@link TransactionPreCommitRequest}.
15  *
16  * @author Robert Varga
17  */
18 public final class TransactionPreCommitSuccess extends TransactionSuccess<TransactionPreCommitSuccess> {
19     @java.io.Serial
20     private static final long serialVersionUID = 1L;
21
22     private TransactionPreCommitSuccess(final TransactionPreCommitSuccess success, final ABIVersion version) {
23         super(success, version);
24     }
25
26     public TransactionPreCommitSuccess(final TransactionIdentifier identifier, final long sequence) {
27         super(identifier, sequence);
28     }
29
30     @Override
31     protected TPCS externalizableProxy(final ABIVersion version) {
32         return new TPCS(this);
33     }
34
35     @Override
36     protected TransactionPreCommitSuccess cloneAsVersion(final ABIVersion version) {
37         return new TransactionPreCommitSuccess(this, version);
38     }
39 }