Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/09/10 13:55:41 (13 years ago)
Author:
cneumuel
Message:

#1233

  • removed dash from solution file name
  • reorganized MessageContainer.MessageTypes
  • added server test project
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/MessageContainer.cs

    r4905 r5078  
    3434
    3535    public enum MessageType {
    36       FetchJob,
    37       AbortJob,
    38       JobAborted,
    39       FinishedJob,
    40       NoMessage,
    41       SnapshotReady,
    42       Shutdown,
    43       JobFailed,
    44       UptimeLimitDisconnect,
    45       UpdateCalendar,
    46       AddChildJob,
    47       PauseJob,
    48       GetChildJobs,
    49       DeleteChildJobs,
     36      // *** commands from hive server ***
     37      NoMessage, // do nothing
     38      AquireJob, // slave should aquire a new job (formerly FetchJob)
     39      StopJob,   // slave should stop the job and submit results
     40      AbortJob,  // slave should shut the job down immediately without submitting results
     41      PauseJob,  // pause the job and submit the results
     42      StopSlave,      // slave should stop all jobs, submit results and shut itself down
     43      ShutdownSlave,  // slave should shutdown immediately without submitting results
     44      SayHello,  // Slave should say hello, because he is unknown to the server
    5045
    51       /// <summary>
    52       /// Slave should add itself
    53       /// </summary>
    54       AddSlaveInfo
     46      // *** events from execution engine ***
     47      JobStopped,      // job finished, submit results, unload appdomain
     48      JobPaused,       // job paused, submit results, unload appdomain
     49      JobFailed,       // job failed with an exception. submit the results, unload appdomain
     50
     51      // *** commands from execution engine ***
     52      AddChildJob,     // adds a new child job for the provided jobId
     53      GetChildJobs,    // return all child jobs of the provided jobId
     54      DeleteChildJobs, // delete all child jobs of the provided jobId
    5555    };
    5656
Note: See TracChangeset for help on using the changeset viewer.