Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/08 16:08:49 (16 years ago)
Author:
msteinbi
Message:

New methods defined in IClientCommunicator (new response classes and HeartBeatData class) (#351)

File:
1 edited

Legend:

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

    r751 r780  
    2727using HeuristicLab.Hive.Contracts.BusinessObjects;
    2828
    29 namespace HeuristicLab.Hive.Server.Interfaces {
     29namespace HeuristicLab.Hive.Contracts.Interfaces {
    3030  /// <summary>
    3131  /// This is the facade for the client communication
     
    3535    [OperationContract]
    3636    Response Login(Client clientInfo);
     37    [OperationContract]
     38    ResponseHB SendHeartBeat(HeartBeatData hbData);
     39    [OperationContract]
     40    ResponseJob PullJob(Guid clientId);
     41    [OperationContract]
     42    Response SendJobResult(JobResult Result, bool finished);
     43    [OperationContract]
     44    Response Logout(Guid clientId);
    3745  }
    3846}
Note: See TracChangeset for help on using the changeset viewer.