Examples of registerProbeHandler()


Examples of org.jgroups.protocols.TP.registerProbeHandler()

            }
        }

        TP transport=getTransport();
        if(transport != null) {
            transport.registerProbeHandler(this);
            if(!transport.supportsMulticasting()) {
                if(use_mcast_xmit) {
                    log.warn("use_mcast_xmit should not be used because the transport (" + transport.getName() +
                            ") does not support IP multicasting; setting use_mcast_xmit to false");
                    use_mcast_xmit=false;
View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

            }
        }

        TP transport=getTransport();
        if(transport != null)
            transport.registerProbeHandler(this);
    }


    public int getGcLag() {
        return gc_lag;
View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

            prot.start();
            above_prot=prot;
        }

        TP transport=getTransport();
        transport.registerProbeHandler(props_handler);
        stopped=false;
    }


View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

            }
        }

        TP transport=getTransport();
        if(transport != null) {
            transport.registerProbeHandler(this);
            if(!transport.supportsMulticasting()) {
                if(use_mcast_xmit) {
                    log.warn("use_mcast_xmit should not be used because the transport (" + transport.getName() +
                            ") does not support IP multicasting; setting use_mcast_xmit to false");
                    use_mcast_xmit=false;
View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

            send_history=new BoundedList<XmitRequest>(stats_list_size);
            receive_history=new BoundedList<MissingMessage>(stats_list_size);
        }
        TP transport=getTransport();
        if(transport != null)
            transport.registerProbeHandler(this);
    }


    public int getGcLag() {
        return gc_lag;
View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

        timer=transport.getTimer();
        if(timer == null)
            throw new Exception("timer is null");
        if(impl != null)
            impl.init();
        transport.registerProbeHandler(this);
    }

    public void start() throws Exception {
        if(impl != null) impl.start();       
    }
View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

            send_history=new BoundedList<XmitRequest>(stats_list_size);
            receive_history=new BoundedList<MissingMessage>(stats_list_size);
        }
        TP transport=getTransport();
        if(transport != null)
            transport.registerProbeHandler(this);
    }


    public int getGcLag() {
        return gc_lag;
View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

            prot.start();
            above_prot=prot;
        }

        TP transport=getTransport();
        transport.registerProbeHandler(props_handler);
        stopped=false;
    }


View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

            }
        }

        TP transport=getTransport();
        if(transport != null) {
            transport.registerProbeHandler(this);
            if(!transport.supportsMulticasting()) {
                if(use_mcast_xmit) {
                    log.warn("use_mcast_xmit should not be used because the transport (" + transport.getName() +
                            ") does not support IP multicasting; setting use_mcast_xmit to false");
                    use_mcast_xmit=false;
View Full Code Here

Examples of org.jgroups.protocols.TP.registerProbeHandler()

        Vector<Address> t=new Vector<Address>(1);
        t.addElement(local_addr);
        my_view=new View(local_addr, 0, t)// create a dummy view

        TP transport=prot_stack.getTransport();
        transport.registerProbeHandler(probe_handler);
    }

    /**
     * Generates new UUID and sets local address. Sends down a REMOVE_ADDRESS (if existing address was present) and
     * a SET_LOCAL_ADDRESS
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.