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

com.stratio.crossdata.server.config.GridConfig Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
package com.stratio.crossdata.server.config;
public  interface GridConfig {
  public  java.lang.String gridListenAddress () ;
  /**
   * The addresses of the hosts running grid
   */
  public  java.lang.String[] gridContactHosts () ;
  /**
   * The port used by the grid
   */
  public  int gridPort () ;
  /**
   * The minimum number of grid members to be contacted
   */
  public  int gridMinInitialMembers () ;
  /**
   * The timeout for connecting to other grid nodes
   */
  public  long gridJoinTimeout () ;
  /**
   * The grid files persistence path
   */
  public  java.lang.String gridPersistencePath () ;
  public  com.typesafe.config.Config config () ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy