Package org.objectweb.proactive.gcmdeployment

Examples of org.objectweb.proactive.gcmdeployment.GCMApplication


      IllegalLifeCycleException, IllegalBindingException,
      ProActiveException, MalformedURLException, URISyntaxException {
   
    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();
   
    Component boot = Utils.getBootstrapComponent();
      PAGCMTypeFactory tf = Utils.getPAGCMTypeFactory(boot);
View Full Code Here


   
    descriptorPath = (new URL(descriptorPath)).toURI().getPath();
   
    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();
    VN2.waitReady();
   
    Component boot = Utils.getBootstrapComponent();
      PAGCMTypeFactory tf = Utils.getPAGCMTypeFactory(boot);
View Full Code Here

TOP

Related Classes of org.objectweb.proactive.gcmdeployment.GCMApplication

Copyright © 2018 www.massapicom. 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.