Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3135 was 1655, checked in by kgrading, 15 years ago

added proper exception handling (#601)

File size: 346 bytes
Line 
1using System;
2using HeuristicLab.Core;
3namespace 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.