Changeset 816 for trunk/sources/HeuristicLab.Hive.Client.Common/Interfaces
- Timestamp:
- 11/25/08 23:24:36 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Common/Interfaces/IJob.cs
r779 r816 1 1 using System; 2 using HeuristicLab.Core; 2 3 namespace HeuristicLab.Hive.Client.Common { 3 public interface IJob { 4 System.Xml.XmlNode GetXmlNode(); 4 public interface IJob: IStorable { 5 5 event EventHandler JobStopped; 6 6 long JobId { get; set; } 7 intProgress { get; set; }7 double Progress { get; set; } 8 8 void Run(); 9 9 bool Running { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.