[+/-]
Constants used in the ClusterJ project.
public interface com.mysql.clusterj.Constants {
// Public Static Fieldspublic static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_DELAY = 5;
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_RETRIES = 4;
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_TIMEOUT_AFTER = 20;
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_TIMEOUT_BEFORE = 30;
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_VERBOSE = 0;
public static final java.lang.String DEFAULT_PROPERTY_CLUSTER_DATABASE = "test";
public static final int DEFAULT_PROPERTY_CLUSTER_MAX_TRANSACTIONS = 4;
public static final java.lang.String PROPERTY_CLUSTER_CONNECTION_SERVICE = "com.mysql.clusterj.connection.service";
public static final java.lang.String PROPERTY_CLUSTER_CONNECTSTRING = "com.mysql.clusterj.connectstring";
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_DELAY = "com.mysql.clusterj.connect.delay";
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_RETRIES = "com.mysql.clusterj.connect.retries";
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_TIMEOUT_AFTER = "com.mysql.clusterj.connect.timeout.after";
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_TIMEOUT_BEFORE = "com.mysql.clusterj.connect.timeout.before";
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_VERBOSE = "com.mysql.clusterj.connect.verbose";
public static final java.lang.String PROPERTY_CLUSTER_DATABASE = "com.mysql.clusterj.database";
public static final java.lang.String PROPERTY_CLUSTER_MAX_TRANSACTIONS = "com.mysql.clusterj.max.transactions";
public static final java.lang.String PROPERTY_DEFER_CHANGES = "com.mysql.clusterj.defer.changes";
public static final java.lang.String PROPERTY_JDBC_DRIVER_NAME = "com.mysql.clusterj.jdbc.driver";
public static final java.lang.String PROPERTY_JDBC_PASSWORD = "com.mysql.clusterj.jdbc.password";
public static final java.lang.String PROPERTY_JDBC_URL = "com.mysql.clusterj.jdbc.url";
public static final java.lang.String PROPERTY_JDBC_USERNAME = "com.mysql.clusterj.jdbc.username";
public static final java.lang.String SESSION_FACTORY_SERVICE_CLASS_NAME = "com.mysql.clusterj.SessionFactoryService";
public static final java.lang.String SESSION_FACTORY_SERVICE_FILE_NAME = "META-INF/services/com.mysql.clusterj.SessionFactoryService";
}
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_DELAY = 5;
The default value of the connection delay property
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_RETRIES = 4;
The default value of the connection retries property
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_TIMEOUT_AFTER = 20;
The default value of the connection timeout after property
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_TIMEOUT_BEFORE = 30;
The default value of the connection timeout before property
public static final int DEFAULT_PROPERTY_CLUSTER_CONNECT_VERBOSE = 0;
The default value of the connection verbose property
public static final java.lang.String DEFAULT_PROPERTY_CLUSTER_DATABASE = "test";
The default value of the database property
public static final int DEFAULT_PROPERTY_CLUSTER_MAX_TRANSACTIONS = 4;
The default value of the maximum number of transactions property
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_DELAY = "com.mysql.clusterj.connect.delay";
The name of the connection delay property. For details, see Ndb_cluster_connection::connect()
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_RETRIES = "com.mysql.clusterj.connect.retries";
The name of the connection retries property. For details, see Ndb_cluster_connection::connect()
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_TIMEOUT_AFTER = "com.mysql.clusterj.connect.timeout.after";
The name of the connection timeout after property. For details, see Ndb_cluster_connection::wait_until_ready()
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_TIMEOUT_BEFORE = "com.mysql.clusterj.connect.timeout.before";
The name of the connection timeout before property. For details, see Ndb_cluster_connection::wait_until_ready()
public static final java.lang.String PROPERTY_CLUSTER_CONNECT_VERBOSE = "com.mysql.clusterj.connect.verbose";
The name of the connection verbose property. For details, see Ndb_cluster_connection::connect()
public static final java.lang.String PROPERTY_CLUSTER_CONNECTION_SERVICE = "com.mysql.clusterj.connection.service";
The name of the connection service property
public static final java.lang.String PROPERTY_CLUSTER_CONNECTSTRING = "com.mysql.clusterj.connectstring";
The name of the connection string property. For details, see Ndb_cluster_connection constructor
public static final java.lang.String PROPERTY_CLUSTER_DATABASE = "com.mysql.clusterj.database";
The name of the database property. For details, see the catalogName parameter in the Ndb constructor. Ndb constructor
public static final java.lang.String PROPERTY_CLUSTER_MAX_TRANSACTIONS = "com.mysql.clusterj.max.transactions";
The name of the maximum number of transactions property. For details, see Ndb::init()
public static final java.lang.String PROPERTY_DEFER_CHANGES = "com.mysql.clusterj.defer.changes";
The flag for deferred inserts, deletes, and updates
public static final java.lang.String PROPERTY_JDBC_DRIVER_NAME = "com.mysql.clusterj.jdbc.driver";
The name of the jdbc driver
public static final java.lang.String PROPERTY_JDBC_PASSWORD = "com.mysql.clusterj.jdbc.password";
The jdbc password
public static final java.lang.String PROPERTY_JDBC_URL = "com.mysql.clusterj.jdbc.url";
The jdbc url
public static final java.lang.String PROPERTY_JDBC_USERNAME = "com.mysql.clusterj.jdbc.username";
The jdbc username