All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.xsite.XSiteReplicateCommand Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.xsite;

import org.infinispan.commands.remote.BaseRpcCommand;
import org.infinispan.util.ByteString;

/**
 * Abstract class to invoke RPC on the remote site.
 *
 * @author Pedro Ruivo
 * @since 7.0
 */
public abstract class XSiteReplicateCommand extends BaseRpcCommand {

   private String originSite;

   protected XSiteReplicateCommand(ByteString cacheName) {
      super(cacheName);
   }

   public abstract Object performInLocalSite(BackupReceiver receiver) throws Throwable;

   public String getOriginSite() {
      return originSite;
   }

   public void setOriginSite(String originSite) {
      this.originSite = originSite;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy