source:
trunk/sources/HeuristicLab.Hive.JobBase/3.2/Interfaces/IJob.cs
@
2797
Last change on this file since 2797 was 1655, checked in by kgrading, 16 years ago | |
---|---|
File size: 346 bytes |
Line | |
---|---|
1 | using System; |
2 | using HeuristicLab.Core; |
3 | namespace HeuristicLab.Hive.JobBase { |
4 | public interface IJob: IStorable { |
5 | event EventHandler JobStopped; |
6 | event EventHandler JobFailed; |
7 | long JobId { get; set; } |
8 | double Progress { get; } |
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.