Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/16/11 00:06:54 (13 years ago)
Author:
cneumuel
Message:

#1233

  • created events when statelog changed
  • fixed memory leak in hiveengine
  • extended timeout for long running transactions and database contexts (when jobdata is stored)
  • replaced random guids in database with sequential guids for performance reasons
  • minor fixes and cleanups
Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine.Views/3.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine.Views/3.4/HiveEngineView.Designer.cs

    r6381 r6419  
    6464      this.resourceIdsTextBox.TabIndex = 4;
    6565      this.resourceIdsTextBox.Text = "HEAL";
    66       this.resourceIdsTextBox.TextChanged += new System.EventHandler(this.resourceIdsTextBox_TextChanged);
     66      this.resourceIdsTextBox.Validated += new System.EventHandler(this.resourceIdsTextBox_Validated);
    6767      //
    6868      // priorityLabel
     
    8282      this.priorityTextBox.TabIndex = 6;
    8383      this.priorityTextBox.Text = "0";
    84       this.priorityTextBox.TextChanged += new System.EventHandler(this.priorityTextBox_TextChanged);
     84      this.priorityTextBox.Validated += new System.EventHandler(this.priorityTextBox_Validated);
    8585      //
    8686      // label1
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine.Views/3.4/HiveEngineView.cs

    r6381 r6419  
    105105   
    106106    #region Event Handlers (child controls)
    107     private void resourceIdsTextBox_TextChanged(object sender, EventArgs e) {
     107    private void resourceIdsTextBox_Validated(object sender, EventArgs e) {
    108108      Content.ResourceNames = resourceIdsTextBox.Text;
    109109    }
    110110
    111     private void priorityTextBox_TextChanged(object sender, EventArgs e) {
     111    private void priorityTextBox_Validated(object sender, EventArgs e) {
    112112      Content.Priority = int.Parse(priorityTextBox.Text);
    113113    }
     
    121121    }
    122122    #endregion
     123
     124
    123125  }
    124126}
Note: See TracChangeset for help on using the changeset viewer.