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

org.infinispan.configuration.cache.XSiteStateTransferMode Maven / Gradle / Ivy

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

/**
 * Cross site state transfer mode.
 *
 * @author Pedro Ruivo
 * @since 12.1
 */
public enum XSiteStateTransferMode {
   /**
    * Cross-site state transfer is triggered manually via CLI, JMX, or REST.
    */
   MANUAL,
   /**
    * Cross-site state transfer is triggered automatically.
    */
   AUTO;

   private final static XSiteStateTransferMode[] CACHED = XSiteStateTransferMode.values();

   public static XSiteStateTransferMode valueOf(int index) {
      return CACHED[index];
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy