Examples of finalizeJob()


Examples of org.jamesii.core.distributed.computationserver.IComputationServer.finalizeJob()

  @Override
  public void finalizeJob(IUniqueID id) throws RemoteException {
    List<IComputationServer> resources =
        serviceRegistry.getServicesForPurpose(id);
    IComputationServer server = resources.get(0);
    server.finalizeJob(id);
    serviceRegistry.freeServices(id);
  }

  /**
   * This method books a set of resources for a simulation. The first resource
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.