Package org.jamesii.core.distributed.computationserver

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


  public <V> V executeJob(IUniqueID id, Serializable data)
      throws RemoteException {
    List<IComputationServer> resources =
        serviceRegistry.getServicesForPurpose(id);
    IComputationServer server = resources.get(0);
    return server.executeJob(id, data);
  }

  @Override
  public void finalizeJob(IUniqueID id) throws RemoteException {
    List<IComputationServer> resources =
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.