connectionCounterLatch = null;
}
protected void awaitConnection() throws InterruptedException {
CounterLatch latch = connectionCounterLatch;
if (latch!=null) latch.await();
}
protected long countUpConnection() {
CounterLatch latch = connectionCounterLatch;
if (latch!=null) return latch.countUp();