replicationtimeouttype.java
来自「Oracle BerkeleyDB(Oracle内嵌数据库」· Java 代码 · 共 62 行
JAVA
62 行
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002-2006 * Oracle Corporation. All rights reserved. * * $Id: ReplicationTimeoutType.java,v 12.2 2006/08/24 14:46:09 bostic Exp $ */package com.sleepycat.db;import com.sleepycat.db.internal.DbConstants;public final class ReplicationTimeoutType { public static final ReplicationTimeoutType ACK_TIMEOUT = new ReplicationTimeoutType("ACK_TIMEOUT", DbConstants.DB_REP_ACK_TIMEOUT); public static final ReplicationTimeoutType ELECTION_TIMEOUT = new ReplicationTimeoutType("ELECTION_TIMEOUT", DbConstants.DB_REP_ELECTION_TIMEOUT); public static final ReplicationTimeoutType ELECTION_RETRY = new ReplicationTimeoutType("ELECTION_RETRY", DbConstants.DB_REP_ELECTION_RETRY); public static final ReplicationTimeoutType CONNECTION_RETRY = new ReplicationTimeoutType("CONNECTION_RETRY", DbConstants.DB_REP_CONNECTION_RETRY); /* package */ static ReplicationTimeoutType fromInt(int type) { switch(type) { case DbConstants.DB_REP_ACK_TIMEOUT: return ACK_TIMEOUT; case DbConstants.DB_REP_ELECTION_TIMEOUT: return ELECTION_TIMEOUT; case DbConstants.DB_REP_ELECTION_RETRY: return ELECTION_RETRY; case DbConstants.DB_REP_CONNECTION_RETRY: return CONNECTION_RETRY; default: throw new IllegalArgumentException( "Unknown timeout type: " + type); } } private String statusName; private int id; private ReplicationTimeoutType(final String statusName, final int id) { this.statusName = statusName; this.id = id; } /* package */ int getId() { return id; } public String toString() { return "ReplicationTimeoutType." + statusName; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?