Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/30/08 13:41:27 (16 years ago)
Author:
gkronber
Message:

merged changesets r219:r228, r240, r241:258, r263:265, r267,r268, r269 from trunk into the HL3 stable branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/sources/HeuristicLab.Grid/IGridServer.cs

    r33 r279  
    2626
    2727namespace HeuristicLab.Grid {
     28  public enum JobState {
     29    Unkown,
     30    Waiting,
     31    Busy,
     32    Finished
     33  }
     34
     35
    2836  [ServiceContract(Namespace = "http://HeuristicLab.Grid")]
    2937  public interface IGridServer {
     38    [OperationContract]
     39    JobState JobState(Guid guid);
    3040    [OperationContract]
    3141    Guid BeginExecuteEngine(byte[] engine);
Note: See TracChangeset for help on using the changeset viewer.