Package org.objectweb.proactive.gcmdeployment

Examples of org.objectweb.proactive.gcmdeployment.GCMApplication.startDeployment()


    String descriptorPath = "file:///user/mibanez/home/Workspace/skandium/src-extras/cl/niclabs/skandium/gcm/examples/GCMApp.xml";
    File appDescriptor = new File((new URL(descriptorPath)).toURI().getPath());
    GCMApplication gcmad;
    gcmad = PAGCMDeployment.loadApplicationDescriptor(appDescriptor);
   
    gcmad.startDeployment();
    gcmad.waitReady();
    GCMVirtualNode VN1 = gcmad.getVirtualNode("VN1");
    GCMVirtualNode VN2 = gcmad.getVirtualNode("VN2");
    VN1.waitReady();
    VN2.waitReady();
View Full Code Here


   
    File appDescriptor = new File(descriptorPath);
   
    GCMApplication gcmad;
    gcmad = PAGCMDeployment.loadApplicationDescriptor(appDescriptor);
    gcmad.startDeployment();
    gcmad.waitReady();
   
    GCMVirtualNode VN1 = gcmad.getVirtualNode("VN1");
    GCMVirtualNode VN2 = gcmad.getVirtualNode("VN2");
    VN1.waitReady();
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.