本文整理了Java中com.twitter.common.zookeeper.testing.ZooKeeperTestServer.getPort()
方法的一些代码示例,展示了ZooKeeperTestServer.getPort()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperTestServer.getPort()
方法的具体详情如下:
包路径:com.twitter.common.zookeeper.testing.ZooKeeperTestServer
类名称:ZooKeeperTestServer
方法名:getPort
[英]Returns the current port to connect to the in-process zookeeper instance.
[中]返回要连接到进程中zookeeper实例的当前端口。
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns the current port to connect to the in-process zookeeper instance.
*/
protected final int getPort() {
return zkTestServer.getPort();
}
代码示例来源:origin: com.twitter.common.zookeeper.guice/client
@Override
public ZooKeeperClient get() {
ZooKeeperTestServer zooKeeperServer;
try {
zooKeeperServer = new ZooKeeperTestServer(0, shutdownRegistry);
zooKeeperServer.startNetwork();
} catch (IOException e) {
throw Throwables.propagate(e);
} catch (InterruptedException e) {
throw Throwables.propagate(e);
}
LOG.info("Embedded zookeeper cluster started on port " + zooKeeperServer.getPort());
return zooKeeperServer.createClient(config.sessionTimeout, config.credentials);
}
}
内容来源于网络,如有侵权,请联系作者删除!