Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/11 23:21:21 (13 years ago)
Author:
cneumuel
Message:

#1233

  • stability improvements for HiveExperiment and HiveEngine
  • parallelized upload of jobs
  • enabled cancellation of job upload
  • reduced the amount of double-assignment of jobs by an additional check in HeartbeatManager
  • tried to tackle the amount of deadlocks by automatically rerunning transactions
  • some fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.ExperimentManager/3.4/Views/RefreshableHiveExperimentView.cs

    r6426 r6444  
    281281    #region Control events
    282282    private void startButton_Click(object sender, EventArgs e) {
    283       HiveClient.StartExperiment((Exception ex) => ErrorHandling.ShowErrorDialog(this, "Start failed.", ex), Content);
     283      HiveClient.StartExperiment((Exception ex) => ErrorHandling.ShowErrorDialog(this, "Start failed.", ex), Content, new CancellationToken());
    284284    }
    285285    private void pauseButton_Click(object sender, EventArgs e) {
     
    301301    }
    302302
    303     private void includeJobsCheckBox_CheckedChanged(object sender, EventArgs e) {
    304       //if (Content != null) Content.IncludeJobs = includeJobsCheckBox.Checked;
    305     }
    306 
    307     private void refreshAutomaticallyCheckBox_CheckedChanged(object sender, EventArgs e) {
    308       if (Content != null) {
    309         Content.RefreshAutomatically = refreshAutomaticallyCheckBox.Checked;
    310       }
    311     }
    312 
    313     private void isPrivilegedCheckBox_CheckedChanged(object sender, EventArgs e) {
     303    private void refreshAutomaticallyCheckBox_Validated(object sender, EventArgs e) {
     304      if (Content != null) Content.RefreshAutomatically = refreshAutomaticallyCheckBox.Checked;
     305    }
     306
     307    private void isPrivilegedCheckBox_Validated(object sender, EventArgs e) {
    314308      if (Content != null) Content.HiveExperiment.IsPrivileged = isPrivilegedCheckBox.Checked;
    315309    }
Note: See TracChangeset for help on using the changeset viewer.