Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/17/08 14:36:20 (15 years ago)
Author:
msteinbi
Message:

Implementation of ClientCommunicator, pullJob sendHeartbeat (#399)

Location:
trunk/sources/HeuristicLab.Hive.Contracts
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Contracts/ApplicationConstants.cs

    r969 r1004  
    4141    public static string RESPONSE_COMMUNICATOR_LOGOUT_SUCCESS = "Communicator.LogoutSuccess";
    4242    public static string RESPONSE_COMMUNICATOR_NO_JOBS_LEFT = "Communicator.NoJobsLeft";
     43    public static string RESPONSE_COMMUNICATOR_ID_MUST_NOT_BE_SET = "Communicator.IdMustNotBeSet";
     44    public static string RESPONSE_COMMUNICATOR_NO_JO_WITH_THIS_ID = "Communicator.NoJobWithThisId";
     45    public static string RESPONSE_COMMUNICATOR_WRONG_JOB_STATE = "Communicator.WrongJobState";
    4346
    4447    public static string RESPONSE_JOB_ALL_JOBS = "Job.AllJobs";
  • trunk/sources/HeuristicLab.Hive.Contracts/BusinessObjects/Client.cs

    r995 r1004  
    2828namespace HeuristicLab.Hive.Contracts.BusinessObjects {
    2929
    30   public enum State { nullState, idle, calculating, offline };
     30  public enum State { nullState, idle, calculating, offline, finished };
    3131
    3232  [DataContract]
  • trunk/sources/HeuristicLab.Hive.Contracts/HiveServerMessages.resx

    r969 r1004  
    217217    <value>A user with this username exists allready</value>
    218218  </data>
     219  <data name="Communicator.IdMustNotBeSet" xml:space="preserve">
     220    <value>The id must not be set in this context</value>
     221  </data>
     222  <data name="Communicator.NoJobWithThisId" xml:space="preserve">
     223    <value>There exists no job with this id</value>
     224  </data>
    219225</root>
  • trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientCommunicator.cs

    r838 r1004  
    4040    ResponseJob PullJob(Guid clientId);
    4141    [OperationContract]
    42     ResponseResultReceived SendJobResult(JobResult Result, bool finished);
     42    ResponseResultReceived SendJobResult(JobResult result, bool finished);
    4343    [OperationContract]
    4444    Response Logout(Guid clientId);
Note: See TracChangeset for help on using the changeset viewer.