Package org.jamesii.core.simulationrun

Examples of org.jamesii.core.simulationrun.ISimulationRun.stopProcessor()


  @Override
  public void stopProc(ComputationTaskIDObject uid) {
    ISimulationRun simulation = getSimulationByUID(uid);
    if (simulation != null) {
      simulation.stopProcessor();
      removeSimulation(simulation);
    } else {
      SimSystem.report(Level.INFO, "Attempted to stop Simulation '" + uid
          + "'. Simulation not found on Server.");
      throw new UnknownComputationTaskException("Simulation with UID: " + uid
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.