Examples of platformManagerDead()


Examples of jade.core.Node.platformManagerDead()

     
      public void reattach() throws ServiceException {
        try {
          Node n = myContainer.getNodeDescriptor().getNode();
          String pmAddress = myContainer.getServiceManager().getLocalAddress();
          n.platformManagerDead(pmAddress, pmAddress);
        }
        catch (IMTPException imtpe) {
          throw new ServiceException("Communication error: "+imtpe.getMessage(), imtpe);
        }
      }
View Full Code Here

Examples of jade.core.Node.platformManagerDead()

      myLogger.log(Logger.FINE, "Recovering node "+name+" ...");
    }
    Node node = null;
    try {
      node = nodeSerializer.deserialize(nn);
      node.platformManagerDead(oldAddress, currentAddress);
      myLogger.log(Logger.INFO, "Node "+name+" successfully recovered.");
      return;
    }
    catch (IMTPException imtpe) {
      myLogger.log(Logger.INFO, "Node "+name+" unreachable. It has likely been killed in the meanwhile");
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.