作者:宅_OTKAU_370 | 来源:互联网 | 2024-10-20 15:29
本文整理了Java中com.twitter.common.zookeeper.testing.ZooKeeperTestServer.createClient()方法的
本文整理了Java中com.twitter.common.zookeeper.testing.ZooKeeperTestServer.createClient()
方法的一些代码示例,展示了ZooKeeperTestServer.createClient()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperTestServer.createClient()
方法的具体详情如下:
包路径:com.twitter.common.zookeeper.testing.ZooKeeperTestServer
类名称:ZooKeeperTestServer
方法名:createClient
ZooKeeperTestServer.createClient介绍
[英]Returns a new unauthenticated zookeeper client connected to the in-process zookeeper server with the default session timeout.
[中]返回一个新的未经验证的zookeeper客户端,该客户端连接到进程中的zookeeper服务器,默认会话超时。
代码示例
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new unauthenticated zookeeper client connected to the in-process zookeeper server
* with the default session timeout.
*/
protected final ZooKeeperClient createZkClient() {
return zkTestServer.createClient();
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new authenticated zookeeper client connected to the in-process zookeeper server with
* the default session timeout and the custom chroot path.
*/
protected final ZooKeeperClient createZkClient(String chrootPath) {
return zkTestServer.createClient(chrootPath);
}
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new authenticated zookeeper client connected to the in-process zookeeper server with
* the default session timeout.
*/
protected final ZooKeeperClient createZkClient(Credentials credentials) {
return zkTestServer.createClient(credentials);
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new unauthenticated zookeeper client connected to the in-process zookeeper server
* with a custom {@code sessionTimeout}.
*/
protected final ZooKeeperClient createZkClient(Amount sessionTimeout) {
return zkTestServer.createClient(sessionTimeout);
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new unauthenticated zookeeper client connected to the in-process zookeeper server
* with the default session timeout.
*/
public final ZooKeeperClient createClient() {
return createClient(defaultSessionTimeout);
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new authenticated zookeeper client connected to the in-process zookeeper server with
* a custom {@code sessionTimeout}.
*/
protected final ZooKeeperClient createZkClient(Amount sessionTimeout,
Credentials credentials) {
return zkTestServer.createClient(sessionTimeout, credentials);
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new authenticated zookeeper client connected to the in-process zookeeper server with
* a custom {@code sessionTimeout}.
*/
public final ZooKeeperClient createClient(Amount sessionTimeout,
Credentials credentials) {
return createClient(sessionTimeout, credentials, Optional.absent());
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new unauthenticated zookeeper client connected to the in-process zookeeper server
* with the default session timeout and a custom {@code chrootPath}.
*/
public final ZooKeeperClient createClient(String chrootPath) {
return createClient(defaultSessionTimeout, Credentials.NONE, Optional.of(chrootPath));
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new authenticated zookeeper client connected to the in-process zookeeper server with
* the default session timeout.
*/
public final ZooKeeperClient createClient(Credentials credentials) {
return createClient(defaultSessionTimeout, credentials, Optional.absent());
}
代码示例来源:origin: com.twitter.common/zookeeper-testing
/**
* Returns a new unauthenticated zookeeper client connected to the in-process zookeeper server
* with a custom {@code sessionTimeout}.
*/
public final ZooKeeperClient createClient(Amount sessionTimeout) {
return createClient(sessionTimeout, Credentials.NONE, Optional.absent());
}
代码示例来源: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);
}
}