
org.infinispan.xsite.SingleXSiteRpcCommand Maven / Gradle / Ivy
package org.infinispan.xsite;
import org.infinispan.commands.VisitableCommand;
import org.infinispan.context.InvocationContext;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
/**
* RPC command to replicate cache operations (such as put, remove, replace, etc.) to the backup site.
*
* @author Pedro Ruivo
* @since 7.0
*/
public class SingleXSiteRpcCommand extends XSiteReplicateCommand {
public static final int COMMAND_ID = 40;
private VisitableCommand command;
public SingleXSiteRpcCommand(String cacheName, VisitableCommand command) {
super(cacheName);
this.command = command;
}
public SingleXSiteRpcCommand(String cacheName) {
super(cacheName);
}
public SingleXSiteRpcCommand() {
super(null);
}
@Override
public Object performInLocalSite(BackupReceiver receiver) throws Throwable {
return receiver.handleRemoteCommand(command);
}
@Override
public Object perform(InvocationContext ctx) throws Throwable {
return command.perform(ctx);
}
@Override
public byte getCommandId() {
return COMMAND_ID;
}
@Override
public void writeTo(ObjectOutput output) throws IOException {
output.writeObject(command);
}
@Override
public void readFrom(ObjectInput input) throws IOException, ClassNotFoundException {
command = (VisitableCommand) input.readObject();
}
@Override
public boolean isReturnValueExpected() {
return command.isReturnValueExpected();
}
@Override
public String toString() {
return "SingleXSiteRpcCommand{" +
"command=" + command +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy