Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/08 16:08:49 (15 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.Server.Core/ClientCommunicator.cs

    r751 r780  
    44using System.Text;
    55using HeuristicLab.Hive.Contracts.BusinessObjects;
    6 using HeuristicLab.Hive.Server.Interfaces;
     6using HeuristicLab.Hive.Contracts.Interfaces;
     7using HeuristicLab.Hive.Contracts;
    78
    89namespace HeuristicLab.Hive.Server.Core {
    9   class ClientCommunicator: IClientCommunicator {
     10  /// <summary>
     11  /// The ClientCommunicator manages the whole communication with the client
     12  /// </summary>
     13  public class ClientCommunicator: IClientCommunicator {
    1014    #region IClientCommunicator Members
    1115
     
    1822    }
    1923
     24    public ResponseHB SendHeartBeat(HeartBeatData hbData) {
     25      throw new NotImplementedException();
     26    }
     27
     28    public ResponseJob PullJob(Guid clientId) {
     29      throw new NotImplementedException();
     30    }
     31
     32    public Response SendJobResult(JobResult Result, bool finished) {
     33      throw new NotImplementedException();
     34    }
     35
     36    public Response Logout(Guid clientId) {
     37      throw new NotImplementedException();
     38    }
     39
    2040    #endregion
    2141  }
Note: See TracChangeset for help on using the changeset viewer.