Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/17/10 10:26:55 (14 years ago)
Author:
cneumuel
Message:
  • Refactored HL.Hive.Experiment. JobItems are not called HiveJobs and OptimizerJobs do not contain a hierarchy anymore.
  • Dynamic generation of jobs on a slave are not reflected on the client user interface.
  • Optimizer-Trees are now strictly synchronized with the HiveJob-Trees (also the ComputeInParallel property is taken into account when the Child HiveJobs are created)
  • Improved the way a class can report progress and lock the UI (IProgressReporter, IProgress, Progress, ProgressView)
  • Changes were made to the config-files, so that server and clients work with blade12.hpc.fh-hagenberg.at
  • Lots of small changes and bugfixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/BusinessObjects/JobState.cs

    r4368 r4423  
    66namespace HeuristicLab.Hive.Contracts.BusinessObjects {
    77  public enum JobState {
     8    /// <summary>
     9    /// Job is actively calculated on a Slave
     10    /// </summary>
    811    Calculating,
     12
     13    /// <summary>
     14    /// Job is waiting to be calculated
     15    /// </summary>
    916    Offline,
     17
     18    /// <summary>
     19    /// Job as finished and is ready to be collected by the Client
     20    /// </summary>
    1021    Finished,
     22
     23    /// <summary>
     24    /// Job is aborted and result can be collected by the Client
     25    /// </summary>
    1126    Aborted,
     27
     28    /// <summary>
     29    /// A snapshot has been requested. The calculating slave is responsible for pausing the Job and sending the snapshot to the server. After that state will be SnapshotSent
     30    /// </summary>
    1231    SnapshotRequested,
     32
     33    /// <summary>
     34    /// Snapshot has been sent to the server and its calculating again (should'nt it be back to Calculating again?)
     35    /// </summary>
    1336    SnapshotSent,
     37
     38    /// <summary>
     39    /// ???
     40    /// </summary>
    1441    Pending,
     42
     43    /// <summary>
     44    /// Job as been aborted due to an error. Results are ready to be collected
     45    /// </summary>
    1546    Failed,
     47
     48    /// <summary>
     49    /// The job is paused and waits on the server to be sent back to a Slave when all of its child jobs are Finished.
     50    /// </summary>
    1651    WaitForChildJobs
    1752  };
Note: See TracChangeset for help on using the changeset viewer.