Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/09/11 01:47:51 (13 years ago)
Author:
ascheibe
Message:

#1233 server can now control the slave heartbeat interval

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs

    r6768 r6893  
    33// <auto-generated>
    44//     This code was generated by a tool.
    5 //     Runtime Version:4.0.30319.235
     5//     Runtime Version:4.0.30319.237
    66//
    77//     Changes to this file may cause incorrect behavior and will be lost if
     
    855855    private System.Nullable<System.Guid> _ParentResourceId;
    856856   
     857    private int _HbInterval;
     858   
    857859    private EntitySet<AssignedResource> _AssignedResources;
    858860   
     
    877879    partial void OnParentResourceIdChanging(System.Nullable<System.Guid> value);
    878880    partial void OnParentResourceIdChanged();
     881    partial void OnHbIntervalChanging(int value);
     882    partial void OnHbIntervalChanged();
    879883    #endregion
    880884   
     
    969973          this.SendPropertyChanged("ParentResourceId");
    970974          this.OnParentResourceIdChanged();
     975        }
     976      }
     977    }
     978   
     979    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HbInterval", DbType="Int")]
     980    public int HbInterval
     981    {
     982      get
     983      {
     984        return this._HbInterval;
     985      }
     986      set
     987      {
     988        if ((this._HbInterval != value))
     989        {
     990          this.OnHbIntervalChanging(value);
     991          this.SendPropertyChanging();
     992          this._HbInterval = value;
     993          this.SendPropertyChanged("HbInterval");
     994          this.OnHbIntervalChanged();
    971995        }
    972996      }
Note: See TracChangeset for help on using the changeset viewer.