
org.opendaylight.controller.cluster.access.commands.AbstractReadTransactionRequestProxyV1 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 java.io.ObjectOutput;
import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
/**
* Abstract base class for serialization proxies associated with {@link AbstractReadTransactionRequest}s. It implements
* the initial (Boron) serialization format.
*
* @author Robert Varga
*
* @param Message type
*/
abstract class AbstractReadTransactionRequestProxyV1>
extends AbstractTransactionRequestProxy {
private static final long serialVersionUID = 1L;
private boolean snapshotOnly;
protected AbstractReadTransactionRequestProxyV1() {
// For Externalizable
}
AbstractReadTransactionRequestProxyV1(final T request) {
super(request);
snapshotOnly = request.isSnapshotOnly();
}
@Override
public void writeExternal(final ObjectOutput out) throws IOException {
super.writeExternal(out);
out.writeBoolean(snapshotOnly);
}
@Override
public void readExternal(final ObjectInput in) throws ClassNotFoundException, IOException {
super.readExternal(in);
snapshotOnly = in.readBoolean();
}
@Override
protected final T createRequest(final TransactionIdentifier target, final long sequence, final ActorRef replyTo) {
return createReadRequest(target, sequence, replyTo, snapshotOnly);
}
@SuppressWarnings("checkstyle:hiddenField")
abstract T createReadRequest(TransactionIdentifier target, long sequence, ActorRef replyTo, boolean snapshotOnly);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy