Package eu.planets_project.tb.api.system.batch

Examples of eu.planets_project.tb.api.system.batch.BatchProcessor.notifyComplete()


           
            //check if completed
            if(bp.isCompleted(ticket)){
              TestbedBatchJob job = bp.getJob(ticket);
              job.setStatus(TestbedBatchJob.DONE);
              bp.notifyComplete(ticket, job);
              log.debug("BatchExecutionListener: notify COMPLETE for: "+ticket);

              return;
            }
           
View Full Code Here


           iter.next();
           iter.remove();
         } //FIXME: this isn't properly updated in the db and the old records don't get deleted
        
         //now call the notifyComplete to pull in the results
         pb.notifyComplete(job_key, pb.getJob(job_key));
    return "success";
   }
    
   /**
    * controller logic for handling the automated evaluation of an experiment
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.