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