org.infinispan.xsite.SingleXSiteRpcCommand Maven / Gradle / Ivy
package org.infinispan.xsite;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.concurrent.CompletableFuture;
import org.infinispan.commands.VisitableCommand;
import org.infinispan.util.ByteString;
/**
* 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(ByteString cacheName, VisitableCommand command) {
super(cacheName);
this.command = command;
}
public SingleXSiteRpcCommand(ByteString cacheName) {
super(cacheName);
}
public SingleXSiteRpcCommand() {
super(null);
}
@Override
public Object performInLocalSite(BackupReceiver receiver) throws Throwable {
return receiver.handleRemoteCommand(command);
}
@Override
public CompletableFuture
© 2015 - 2025 Weber Informatics LLC | Privacy Policy