Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.JobBase/Interfaces/IJob.cs @ 1442

Last change on this file since 1442 was 1430, checked in by kgrading, 16 years ago

minor final changes to the interface (#529)

File size: 311 bytes
RevLine 
[1001]1using System;
2using HeuristicLab.Core;
3namespace HeuristicLab.Hive.JobBase {
4  public interface IJob: IStorable {
5    event EventHandler JobStopped;
6    long JobId { get; set; }
[1430]7    double Progress { get; }
[1001]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.