source:
trunk/sources/HeuristicLab.Hive.JobBase/3.2/Interfaces/IJob.cs
@
1992
Last change on this file since 1992 was 1655, checked in by kgrading, 16 years ago | |
---|---|
File size: 346 bytes |
Rev | Line | |
---|---|---|
[1001] | 1 | using System; |
2 | using HeuristicLab.Core; | |
3 | namespace HeuristicLab.Hive.JobBase { | |
4 | public interface IJob: IStorable { | |
5 | event EventHandler JobStopped; | |
[1655] | 6 | event EventHandler JobFailed; |
[1001] | 7 | long JobId { get; set; } |
[1430] | 8 | double Progress { get; } |
[1001] | 9 | void Run(); |
10 | bool Running { get; set; } | |
11 | void Start(); | |
12 | void Stop(); | |
13 | } | |
14 | } |
Note: See TracBrowser
for help on using the repository browser.