本文整理汇总了Java中org.apache.zookeeper.test.ClientBase.CountdownWatcher.waitForDisconnected方法的典型用法代码示例。如果您正苦于以下问题:Java CountdownWatcher.waitForDisconnected方法的具体用法?Java CountdownWatcher.waitForDisconnected怎么用?Java CountdownWatcher.waitForDisconnected使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.zookeeper.test.ClientBase.CountdownWatcher
的用法示例。
在下文中一共展示了CountdownWatcher.waitForDisconnected方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testFollowersStartAfterLeader
import org.apache.zookeeper.test.ClientBase.CountdownWatcher; //导入方法依赖的package包/类
/**
* See ZOOKEEPER-790 for details
* */
@Test
public void testFollowersStartAfterLeader() throws Exception {
QuorumUtil qu = new QuorumUtil(1);
CountdownWatcher watcher = new CountdownWatcher();
qu.startQuorum();
int index = 1;
while(qu.getPeer(index).peer.leader == null) {
index++;
}
ZooKeeper zk = new ZooKeeper(
"127.0.0.1:" + qu.getPeer((index == 1)?2:1).peer.getClientPort(),
ClientBase.CONNECTION_TIMEOUT, watcher);
watcher.waitForConnected(CONNECTION_TIMEOUT);
// break the quorum
qu.shutdown(index);
// Wait until we disconnect to proceed
watcher.waitForDisconnected(CONNECTION_TIMEOUT);
// try to reestablish the quorum
qu.start(index);
try{
watcher.waitForConnected(30000);
} catch(TimeoutException e) {
Assert.fail("client could not connect to reestablished quorum: giving up after 30+ seconds.");
}
zk.close();
qu.tearDown();
}