Changeset 6367 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer
- Timestamp:
- 06/06/11 16:30:05 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/HiveItem.cs
r5614 r6367 10 10 11 11 public HiveItem() { } 12 13 12 } 14 13 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/NamedHiveItem.cs
r5614 r6367 1 using System.Runtime.Serialization; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System.Runtime.Serialization; 2 23 3 24 namespace HeuristicLab.Services.Hive.Common.DataTransfer { … … 10 31 11 32 protected NamedHiveItem() { } 12 13 33 } 14 34 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/Plugin.cs
r5614 r6367 40 40 41 41 public Plugin() { } 42 43 44 42 } 45 43 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/PluginData.cs
r5614 r6367 35 35 36 36 public PluginData() { } 37 38 39 37 } 40 38 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/Resource.cs
r5614 r6367 31 31 32 32 public Resource() { } 33 34 33 } 35 34 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/SlaveStatistics.cs
r6229 r6367 39 39 [DataMember] 40 40 public double CpuUtilization { get; set; } 41 42 41 } 43 42 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/StateLog.cs
r5614 r6367 41 41 42 42 public StateLog() { } 43 44 43 } 45 44 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/Statistics.cs
r6229 r6367 31 31 public DateTime TimeStamp { get; set; } 32 32 [DataMember] 33 public IEnumerable<UserStatistics> UserStatistics { get;set;}33 public IEnumerable<UserStatistics> UserStatistics { get; set; } 34 34 [DataMember] 35 public IEnumerable<SlaveStatistics> SlaveStatistics { get;set;}35 public IEnumerable<SlaveStatistics> SlaveStatistics { get; set; } 36 36 37 37 public Statistics() { } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/UserStatistics.cs
r6229 r6367 37 37 [DataMember] 38 38 public TimeSpan StartToEndTime { get; set; } 39 40 41 42 39 } 43 40 }
Note: See TracChangeset
for help on using the changeset viewer.