Package org.lealone.zookeeper

Examples of org.lealone.zookeeper.ZooKeeperAdmin


    public String getOnlineServer(String quorum) {
        if (zkAdmin == null) {
            int sessionTimeout = getProperty("ZOOKEEPER_SESSION_TIMEOUT", DEFAULT_ZK_SESSION_TIMEOUT);
            removeProperty("ZOOKEEPER_SESSION_TIMEOUT", null);
            zkAdmin = new ZooKeeperAdmin(quorum, sessionTimeout);
        }
        return zkAdmin.getOnlineServer();
    }
View Full Code Here

TOP

Related Classes of org.lealone.zookeeper.ZooKeeperAdmin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.