All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.protocols.PING Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 33.0.2.Final
Show newest version
package org.jgroups.protocols;

import org.jgroups.Address;
import org.jgroups.Event;
import org.jgroups.Message;
import org.jgroups.PhysicalAddress;
import org.jgroups.util.Responses;
import org.jgroups.util.UUID;

import java.io.InterruptedIOException;
import java.util.List;


/**
 * The PING protocol retrieves the initial membership by mcasting a discovery request (via the multicast capable
 * transport) to all current cluster members

* The responses should allow us to determine the coordinator which we have to contact, e.g. in case we want to join * the group. When we are a server (after having received the BECOME_SERVER event), we'll respond to discovery requests * with a discovery response. * @author Bela Ban */ public class PING extends Discovery { public boolean isDynamic() { return true; } public void findMembers(List

members, boolean initial_discovery, Responses responses) { try { sendDiscoveryRequest(cluster_name, members); } catch(InterruptedIOException ie) { ; } catch(InterruptedException ex) { ; } catch(Throwable ex) { log.error("failed sending discovery request", ex); } } protected void sendDiscoveryRequest(String cluster_name, List
members_to_find) throws Exception { PhysicalAddress physical_addr=(PhysicalAddress)down(new Event(Event.GET_PHYSICAL_ADDRESS, local_addr)); // https://issues.jboss.org/browse/JGRP-1670 PingData data=new PingData(local_addr, false, UUID.get(local_addr), physical_addr); PingHeader hdr=new PingHeader(PingHeader.GET_MBRS_REQ).clusterName(cluster_name); if(members_to_find != null && members_to_find.size() <= max_members_in_discovery_request) data.mbrs(members_to_find); // message needs to have DONT_BUNDLE flag: if A sends message M to B, and we need to fetch B's physical // address, then the bundler thread blocks until the discovery request has returned. However, we cannot send // the discovery *request* until the bundler thread has returned from sending M Message msg=new Message(null).putHeader(getId(),hdr).setBuffer(marshal(data)) .setFlag(Message.Flag.INTERNAL,Message.Flag.DONT_BUNDLE,Message.Flag.OOB) .setTransientFlag(Message.TransientFlag.DONT_LOOPBACK); sendMcastDiscoveryRequest(msg); } protected void sendMcastDiscoveryRequest(Message msg) { down_prot.down(new Event(Event.MSG, msg)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy