Package org.jgroups.util

Examples of org.jgroups.util.AckCollector.ack()


    @Test(expectedExceptions=TimeoutException.class)
    public void testWaitForAllAcksWithTimeoutException2() throws TimeoutException {
        final AckCollector ac=new AckCollector(null, list);
        new Thread() {
            public void run() {
                ac.ack("one");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("two");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
View Full Code Here


        new Thread() {
            public void run() {
                ac.ack("one");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("two");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("three");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
View Full Code Here

                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("two");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("three");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("four");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
View Full Code Here

                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("three");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("four");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("five");
                System.out.println("AckCollector: " + ac);
            }
View Full Code Here

                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("four");
                System.out.println("AckCollector: " + ac);
                Util.sleep(200);
                ac.ack("five");
                System.out.println("AckCollector: " + ac);
            }
        }.start();
        ac.waitForAllAcks(300);
    }
View Full Code Here

                Util.sleep(500);
                System.out.println("resetting AckCollector");
                ac.reset(new_list);
                System.out.println("reset AckCollector: " + ac);
                Util.sleep(100);
                ac.ack("six");
                System.out.println("AckCollector: " + ac);
                Util.sleep(100);
                ac.ack("seven");
                System.out.println("AckCollector: " + ac);
                Util.sleep(100);
View Full Code Here

                System.out.println("reset AckCollector: " + ac);
                Util.sleep(100);
                ac.ack("six");
                System.out.println("AckCollector: " + ac);
                Util.sleep(100);
                ac.ack("seven");
                System.out.println("AckCollector: " + ac);
                Util.sleep(100);
                ac.ack("eight");
                System.out.println("AckCollector: " + ac);
            }
View Full Code Here

                System.out.println("AckCollector: " + ac);
                Util.sleep(100);
                ac.ack("seven");
                System.out.println("AckCollector: " + ac);
                Util.sleep(100);
                ac.ack("eight");
                System.out.println("AckCollector: " + ac);
            }
        }.start();
        System.out.println("initial AckCollector: " + ac);
        ac.waitForAllAcks(5000);
View Full Code Here

    public static void testOneList() throws TimeoutException, UnknownHostException {
        List tmp=new ArrayList();
        Address addr=Util.createRandomAddress();
        tmp.add(addr);
        AckCollector coll=new AckCollector(null, tmp);
        coll.ack(addr);
        coll.waitForAllAcks(1000);
    }


View Full Code Here

    public void testOneList() throws TimeoutException, UnknownHostException {
        List tmp=new ArrayList();
        Address addr=new IpAddress("127.0.0.1", 5555);
        tmp.add(addr);
        AckCollector coll=new AckCollector(null, tmp);
        coll.ack(addr);
        coll.waitForAllAcks(1000);
    }


    public static void main(String[] args) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.