Package org.jgroups.protocols.rules

Examples of org.jgroups.protocols.rules.SUPERVISOR


    protected void destroy() {
        Util.close(b,a);
    }

    public void testFailureDetectionRule() {
        SUPERVISOR sva=(SUPERVISOR)a.getProtocolStack().findProtocol(SUPERVISOR.class);
        sva.installRule(500, new RestartFailureDetector());

        SUPERVISOR svb=(SUPERVISOR)b.getProtocolStack().findProtocol(SUPERVISOR.class);
        svb.installRule(500, new RestartFailureDetector());

        assertFailureDetectorRunning(a, b);

        System.out.println("stopping failure detection, waiting for failure detection restart rule to restart failure detection");
        stopFailureDetection(a, b);
View Full Code Here


                                 new FD(),
                                 new NAKACK2().setValue("use_mcast_xmit", false),
                                 new UNICAST3(),
                                 new STABLE().setValue("max_bytes", 50000),
                                 new GMS().setValue("print_local_addr", false),
                                 new SUPERVISOR());
        ch.setName(name);
        return ch;
    }
View Full Code Here

TOP

Related Classes of org.jgroups.protocols.rules.SUPERVISOR

Copyright © 2018 www.massapicom. 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.