예제 #1
0
 public void OnDownloadCompletion(ApsimHPC.JobExecutor ex)
 {
     label14.Text      = "Job Downloaded";
     notebook1.Page    = 2;
     button6.Sensitive = false;
     popMessage("doDownloadOutputs");
 }
예제 #2
0
 // Called when the job has been submitted (or not). Re-enable the go button
 public async void OnGoFinished(ApsimHPC.JobExecutor ex, bool ok)
 {
     button4.Sensitive = true;
     if (ok)
     {
         this.label14.Text = "Job Running";
         notebook1.Page    = 1;
         await Task.Run(() => new Timer(new TimerCallback(ex.waitForCompletion), null, 30000, -1));;
     }
 }
예제 #3
0
 public void OnJobCompletion(ApsimHPC.JobExecutor ex)
 {
     label14.Text      = "Job Completed";
     notebook1.Page    = 2;
     button6.Sensitive = true;
 }