Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
Apache ZooKeeper 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/watch/WatchesSummary.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.watch; import java.util.LinkedHashMap; import java.util.Map; /** * A summary of watch information. This class is immutable. */ public class WatchesSummary { /** * The key in the map returned by {@link #toMap()} for the number of * connections. */ public static final String KEY_NUM_CONNECTIONS = "num_connections"; /** * The key in the map returned by {@link #toMap()} for the number of paths. */ public static final String KEY_NUM_PATHS = "num_paths"; /** * The key in the map returned by {@link #toMap()} for the total number of * watches. */ public static final String KEY_NUM_TOTAL_WATCHES = "num_total_watches"; private final int numConnections; private final int numPaths; private final int totalWatches; /** * Creates a new summary. * * @param numConnections the number of sessions that have set watches * @param numPaths the number of paths that have watches set on them * @param totalWatches the total number of watches set */ WatchesSummary(int numConnections, int numPaths, int totalWatches) { this.numConnections = numConnections; this.numPaths = numPaths; this.totalWatches = totalWatches; } /** * Gets the number of connections (sessions) that have set watches. * * @return number of connections */ public int getNumConnections() { return numConnections; } /** * Gets the number of paths that have watches set on them. * * @return number of paths */ public int getNumPaths() { return numPaths; } /** * Gets the total number of watches set. * * @return total watches */ public int getTotalWatches() { return totalWatches; } /** * Converts this summary to a map. The returned map is mutable, and changes * to it do not reflect back into this summary. * * @return map representation of summary */ public Map<String, Object> toMap() { Map<String, Object> summary = new LinkedHashMap<String, Object>(); summary.put(KEY_NUM_CONNECTIONS, numConnections); summary.put(KEY_NUM_PATHS, numPaths); summary.put(KEY_NUM_TOTAL_WATCHES, totalWatches); return summary; } }
⏎ org/apache/zookeeper/server/watch/WatchesSummary.java
Â
⇒ Apache ZooKeeper Jute Source Code
⇑ Downloading and Reviewing zookeeper.jar
⇑⇑ FAQ for Apache ZooKeeper
2018-10-18, 29060👍, 1💬
Popular Posts:
What Is ojdbc8.jar for Oracle 12c R2? ojdbc8.jar for Oracle 12c R2 is the JAR files of ojdbc.jar, JD...
SLF4J API is a simple API that allows to plug in any desired logging library at deployment time. Her...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...
JDK 11 jdk.xml.dom.jmod is the JMOD file for JDK 11 XML DOM module. JDK 11 XML DOM module compiled c...