网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

zk中ServerCnxnFactory连接管理工厂的使用方法

这篇文章主要介绍“zk中ServerCnxnFactory连接管理工厂的使用方法”,在日常操作中,相信很多人在zk中ServerCnxnFactory连接管理工厂的使用方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”zk中ServerCnxnFactory连接管理工厂的使用方法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

在网站制作、成都网站制作过程中,需要针对客户的行业特点、产品特性、目标受众和市场情况进行定位分析,以确定网站的风格、色彩、版式、交互等方面的设计方向。创新互联建站还需要根据客户的需求进行功能模块的开发和设计,包括内容管理、前台展示、用户权限管理、数据统计和安全保护等功能。

作为ServerCnxn的工厂抽象类

属性

ZOOKEEPER_SERVER_CNXN_FACTORY

zookeeper.serverCnxnFactory

secure

在ServerCnxnFactory中SSL是否启用

sessionMap

session管理配置中信息(sessionId,ServerCnxn)

zkServer

ZooKeeperServer

方法 (存在很多抽象方法)

addSession(long sessionId, ServerCnxn cnxn)

添加session

removeCnxnFromSessionMap(ServerCnxn cnxn)

从工厂中移除Cnxn

closeSession(long sessionId, ServerCnxn.DisconnectReason reason)

关闭session

getLocalPort

 

getConnections

获取连接

getNumAliveConnections

获取存活的连接

getZooKeeperServer

获取zkServer

configure

配置

getMaxClientCnxnsPerHost

单个端口上最大连接

startup

启动服务

createFactory()

 

unregisterConnection(ServerCnxn serverCnxn)

去注册连接

registerConnection(ServerCnxn serverCnxn)

注册连接

public abstract void startup(ZooKeeperServer zkServer, boolean startServer) throws IOException, InterruptedException;


public static ServerCnxnFactory createFactory() throws IOException {
    //获取key对应值
    String serverCnxnFactoryName = System.getProperty(ZOOKEEPER_SERVER_CNXN_FACTORY);
    if (serverCnxnFactoryName == null) {
        //默认是NIO
        serverCnxnFactoryName = NIOServerCnxnFactory.class.getName();
    }
    try {
        //加载实例
        ServerCnxnFactory serverCnxnFactory = (ServerCnxnFactory) Class.forName(serverCnxnFactoryName)
                                                                       .getDeclaredConstructor()
                                                                       .newInstance();
        LOG.info("Using {} as server connection factory", serverCnxnFactoryName);
        return serverCnxnFactory;
    } catch (Exception e) {
        IOException ioe = new IOException("Couldn't instantiate " + serverCnxnFactoryName, e);
        throw ioe;
    }
}

到此,关于“zk中ServerCnxnFactory连接管理工厂的使用方法”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注创新互联网站,小编会继续努力为大家带来更多实用的文章!


网站标题:zk中ServerCnxnFactory连接管理工厂的使用方法
网页URL:http://bjjierui.cn/article/pooehd.html

其他资讯