Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/BusinessObjects/JobState.cs @ 4264

Last change on this file since 4264 was 4264, checked in by cneumuel, 14 years ago

Split up "State" to "JobState" and "SlaveState" (#1159)

File size: 317 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Contracts.BusinessObjects {
7  public enum JobState {
8    Calculating,
9    Offline,
10    Finished,
11    Aborted,
12    SnapshotRequested,
13    SnapshotSent,
14    Pending,
15    Failed
16  };
17}
Note: See TracBrowser for help on using the repository browser.