org.opendaylight.controller.cluster.access.commands.ReadTransactionRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
package org.opendaylight.controller.cluster.access.commands;
import akka.actor.ActorRef;
import java.io.IOException;
import java.io.ObjectInput;
import org.eclipse.jdt.annotation.NonNull;
import org.opendaylight.controller.cluster.access.ABIVersion;
import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
/**
* A transaction request to read a particular path exists in the current view of a particular transaction.
*/
public final class ReadTransactionRequest extends AbstractReadPathTransactionRequest {
interface SerialForm extends AbstractReadPathTransactionRequest.SerialForm {
@Override
default ReadTransactionRequest readExternal(final ObjectInput in, final TransactionIdentifier target,
final long sequence, final ActorRef replyTo, final boolean snapshotOnly, final YangInstanceIdentifier path)
throws IOException {
return new ReadTransactionRequest(target, sequence, replyTo, path, snapshotOnly);
}
}
@java.io.Serial
private static final long serialVersionUID = 1L;
public ReadTransactionRequest(final @NonNull TransactionIdentifier identifier, final long sequence,
final @NonNull ActorRef replyTo, final @NonNull YangInstanceIdentifier path, final boolean snapshotOnly) {
super(identifier, sequence, replyTo, path, snapshotOnly);
}
private ReadTransactionRequest(final ReadTransactionRequest request, final ABIVersion version) {
super(request, version);
}
@Override
protected ReadTransactionRequest cloneAsVersion(final ABIVersion version) {
return new ReadTransactionRequest(this, version);
}
@Override
protected SerialForm externalizableProxy(final ABIVersion version) {
return ABIVersion.MAGNESIUM.lt(version) ? new RTR(this) : new ReadTransactionRequestProxyV1(this);
}
}