Last change
on this file since 814 was
779,
checked in by kgrading, 16 years ago
|
Continued work on ticket (#365) + created a Job Interface
|
File size:
320 bytes
|
Rev | Line | |
---|
[779] | 1 | using System;
|
---|
| 2 | namespace HeuristicLab.Hive.Client.Common {
|
---|
| 3 | public interface IJob {
|
---|
| 4 | System.Xml.XmlNode GetXmlNode();
|
---|
| 5 | event EventHandler JobStopped;
|
---|
| 6 | long JobId { get; set; }
|
---|
| 7 | int 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.