Examples of PhysicalAddress


Examples of org.jgroups.PhysicalAddress

                 local = local_addr;                
             } else {
                 ProtocolAdapter adapter = ProtocolAdapter.thread_local.get();
                 local = adapter.local_addr;
             }
             PhysicalAddress physical_addr=(PhysicalAddress)down(new Event(Event.GET_PHYSICAL_ADDRESS, local));
             List<PhysicalAddress> physical_addrs=Arrays.asList(physical_addr);
             String logical_name=org.jgroups.util.UUID.get(local);
             tunnel_policy.connect(stubs, group, local, logical_name, physical_addrs);
            break;
View Full Code Here

Examples of org.jgroups.PhysicalAddress

                      if (log.isInfoEnabled()) {
                          log.info("Reconnecting " + stub);
                      }

                      if(!isSingleton()){
                          PhysicalAddress physical_addr=(PhysicalAddress)down(new Event(Event.GET_PHYSICAL_ADDRESS, local_addr));
                          List<PhysicalAddress> physical_addrs=Arrays.asList(physical_addr);
                          stub.connect(channel_name, local_addr, UUID.get(local_addr), physical_addrs);
                          if (log.isInfoEnabled()) {
                              log.info("Reconnected " + stub);
                          }
                      }
                      else {
                          for(Protocol p: up_prots.values()) {
                              if(p instanceof ProtocolAdapter) {
                                  Address local=((ProtocolAdapter)p).local_addr;
                                  String cluster_name=((ProtocolAdapter)p).cluster_name;
                                  PhysicalAddress physical_addr=(PhysicalAddress)down(new Event(Event.GET_PHYSICAL_ADDRESS, local));
                                  List<PhysicalAddress> physical_addrs=Arrays.asList(physical_addr);
                                  stub.connect(cluster_name, local, UUID.get(local), physical_addrs);
                                  if (log.isInfoEnabled()) {
                                      log.info("Reconnected " + stub);
                                  }
View Full Code Here

Examples of org.jgroups.PhysicalAddress

    }


    protected void connect(String group, Address logical_addr) {
        String logical_name=org.jgroups.util.UUID.get(logical_addr);
        PhysicalAddress physical_addr=(PhysicalAddress)down_prot.down(new Event(Event.GET_PHYSICAL_ADDRESS, local_addr));
        List<PhysicalAddress> physical_addrs=physical_addr != null? new ArrayList<PhysicalAddress>() : null;
        if(physical_addr != null)
            physical_addrs.add(physical_addr);

        int num_faulty_conns=0;
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.