Package org.jgroups.protocols

Examples of org.jgroups.protocols.MERGE3$InfoSender


    private static void modifyStack(JChannel ch) {
        ProtocolStack stack=ch.getProtocolStack();
        Protocol prot=stack.findProtocol(MERGE3.class);
        if(prot != null) {
            MERGE3 merge=(MERGE3)prot;
            merge.setMinInterval(3000);
            merge.setMaxInterval(5000);
        }
        prot=stack.findProtocol(STABLE.class);
        if(prot != null) {
            STABLE stable=(STABLE)prot;
            stable.setDesiredAverageGossip(5000);
View Full Code Here

TOP

Related Classes of org.jgroups.protocols.MERGE3$InfoSender

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.