149150151152153154155156157158159
System.out.println("ac = " + ac); assert ac.size() == 5; Thread thread=new Thread() { public void run() { Util.sleep(2000); ac.destroy(); } }; thread.start(); boolean result=ac.waitForAllAcks(10000); System.out.println("result = " + result);