Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Apache ZooKeeper 3.7.0 Server Source Code
Apache ZooKeeper is an open-source server which enables highly
reliable distributed coordination.
Apache ZooKeeper Server Source Code files are provided in the source packge (apache-zookeeper-3.7.0.tar.gz). You can download it at Apache ZooKeeper Website.
You can also browse Apache ZooKeeper Server Source Code below:
✍: FYIcenter.com
⏎ org/apache/zookeeper/server/ZooKeeperServerConf.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.zookeeper.server; import java.util.LinkedHashMap; import java.util.Map; /** * Configuration data for a {@link ZooKeeperServer}. This class is immutable. */ public class ZooKeeperServerConf { /** * The key in the map returned by {@link #toMap()} for the client port. */ public static final String KEY_CLIENT_PORT = "client_port"; /** * The key in the map returned by {@link #toMap()} for the data directory. */ public static final String KEY_DATA_DIR = "data_dir"; /** * The key in the map returned by {@link #toMap()} for the data log * directory. */ public static final String KEY_DATA_LOG_DIR = "data_log_dir"; /** * The key in the map returned by {@link #toMap()} for the tick time. */ public static final String KEY_TICK_TIME = "tick_time"; /** * The key in the map returned by {@link #toMap()} for the maximum * client connections per host. */ public static final String KEY_MAX_CLIENT_CNXNS = "max_client_cnxns"; /** * The key in the map returned by {@link #toMap()} for the minimum session * timeout. */ public static final String KEY_MIN_SESSION_TIMEOUT = "min_session_timeout"; /** * The key in the map returned by {@link #toMap()} for the maximum session * timeout. */ public static final String KEY_MAX_SESSION_TIMEOUT = "max_session_timeout"; /** * The key in the map returned by {@link #toMap()} for the server ID. */ public static final String KEY_SERVER_ID = "server_id"; /** * The key in the map returned by {@link #toMap()} for the server socket * listen backlog. */ public static final String KEY_CLIENT_PORT_LISTEN_BACKLOG = "client_port_listen_backlog"; private final int clientPort; private final String dataDir; private final String dataLogDir; private final int tickTime; private final int maxClientCnxnsPerHost; private final int minSessionTimeout; private final int maxSessionTimeout; private final long serverId; private final int clientPortListenBacklog; /** * Creates a new configuration. * * @param clientPort client port * @param dataDir absolute path to data directory * @param dataLogDir absolute path to data log directory * @param tickTime tick time * @param maxClientCnxnsPerHost maximum number of client connections * @param minSessionTimeout minimum session timeout * @param maxSessionTimeout maximum session timeout * @param serverId server ID */ ZooKeeperServerConf(int clientPort, String dataDir, String dataLogDir, int tickTime, int maxClientCnxnsPerHost, int minSessionTimeout, int maxSessionTimeout, long serverId, int clientPortListenBacklog) { this.clientPort = clientPort; this.dataDir = dataDir; this.dataLogDir = dataLogDir; this.tickTime = tickTime; this.maxClientCnxnsPerHost = maxClientCnxnsPerHost; this.minSessionTimeout = minSessionTimeout; this.maxSessionTimeout = maxSessionTimeout; this.serverId = serverId; this.clientPortListenBacklog = clientPortListenBacklog; } /** * Gets the client port. * * @return client port */ public int getClientPort() { return clientPort; } /** * Gets the data directory. * * @return data directory */ public String getDataDir() { return dataDir; } /** * Gets the data log directory. * * @return data log directory */ public String getDataLogDir() { return dataLogDir; } /** * Gets the tick time. * * @return tick time */ public int getTickTime() { return tickTime; } /** * Gets the maximum client connections per host. * * @return maximum client connections per host */ public int getMaxClientCnxnsPerHost() { return maxClientCnxnsPerHost; } /** * Gets the minimum session timeout. * * @return minimum session timeout */ public int getMinSessionTimeout() { return minSessionTimeout; } /** * Gets the maximum session timeout. * * @return maximum session timeout */ public int getMaxSessionTimeout() { return maxSessionTimeout; } /** * Gets the server ID. * * @return server ID */ public long getServerId() { return serverId; } /** * Returns the server socket listen backlog length. */ public int getClientPortListenBacklog() { return clientPortListenBacklog; } /** * Converts this configuration to a map. The returned map is mutable, and * changes to it do not reflect back into this configuration. * * @return map representation of configuration */ public Map<String, Object> toMap() { Map<String, Object> conf = new LinkedHashMap<String, Object>(); conf.put(KEY_CLIENT_PORT, clientPort); conf.put(KEY_DATA_DIR, dataDir); conf.put(KEY_DATA_LOG_DIR, dataLogDir); conf.put(KEY_TICK_TIME, tickTime); conf.put(KEY_MAX_CLIENT_CNXNS, maxClientCnxnsPerHost); conf.put(KEY_MIN_SESSION_TIMEOUT, minSessionTimeout); conf.put(KEY_MAX_SESSION_TIMEOUT, maxSessionTimeout); conf.put(KEY_SERVER_ID, serverId); conf.put(KEY_CLIENT_PORT_LISTEN_BACKLOG, clientPortListenBacklog); return conf; } }
⏎ org/apache/zookeeper/server/ZooKeeperServerConf.java
Or download all of them as a single archive file:
File name: zookeeper-server-3.7.0-fyi.zip File size: 871011 bytes Release date: 2021-05-17 Download
⇒ Apache ZooKeeper 3.7.0 Jute Source Code
⇐ Download Apache ZooKeeper 3.7.0 Source Package
2022-11-16, 24896👍, 0💬
Popular Posts:
What Is mail.jar of JavaMail 1.3? I got the JAR file from javamail-1_3.zip. mail.jar in javamail-1_3...
What Is javaws.jar in JRE (Java Runtime Environment) 8? javaws.jar in JRE (Java Runtime Environment)...
The Web Services Description Language for Java Toolkit (WSDL4J), Release 1.6.2, allows the creation,...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...