• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/java/src/com/sleepycat/db/

Lines Matching defs:ReplicationTimeoutType

14 The ReplicationTimeoutType defines the types of timeouts that can beconfigured for the Berkeley Db replication functionality.
18 public final class ReplicationTimeoutType {
25 public static final ReplicationTimeoutType ACK_TIMEOUT =
26 new ReplicationTimeoutType("ACK_TIMEOUT", DbConstants.DB_REP_ACK_TIMEOUT);
34 public static final ReplicationTimeoutType CHECKPOINT_DELAY =
35 new ReplicationTimeoutType("CHECKPOINT_DELAY", DbConstants.DB_REP_CHECKPOINT_DELAY);
42 public static final ReplicationTimeoutType CONNECTION_RETRY =
43 new ReplicationTimeoutType("CONNECTION_RETRY", DbConstants.DB_REP_CONNECTION_RETRY);
48 public static final ReplicationTimeoutType ELECTION_TIMEOUT =
49 new ReplicationTimeoutType("ELECTION_TIMEOUT", DbConstants.DB_REP_ELECTION_TIMEOUT);
55 public static final ReplicationTimeoutType ELECTION_RETRY =
56 new ReplicationTimeoutType("ELECTION_RETRY", DbConstants.DB_REP_ELECTION_RETRY);
64 public static final ReplicationTimeoutType HEARTBEAT_MONITOR =
65 new ReplicationTimeoutType("HEARTBEAT_MONITOR", DbConstants.DB_REP_HEARTBEAT_MONITOR);
72 public static final ReplicationTimeoutType HEARTBEAT_SEND =
73 new ReplicationTimeoutType("HEARTBEAT_SEND", DbConstants.DB_REP_HEARTBEAT_SEND);
83 public static final ReplicationTimeoutType FULL_ELECTION_TIMEOUT =
84 new ReplicationTimeoutType("FULL_ELECTION_TIMEOUT", DbConstants.DB_REP_FULL_ELECTION_TIMEOUT);
87 static ReplicationTimeoutType fromInt(int type) {
106 private ReplicationTimeoutType(final String statusName, final int id) {
118 return "ReplicationTimeoutType." + statusName;