Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/09 12:12:05 (16 years ago)
Author:
msteinbi
Message:

splited ProcessJobResult into two methods (StoreFinishedJobResult, ProcessSnapshot) (#531)

File:
1 edited

Legend:

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

    r1369 r1374  
    4040    ResponseJob SendJob(Guid clientId);
    4141    [OperationContract]
    42     ResponseResultReceived ProcessJobResult(Guid clientId,
     42    ResponseResultReceived StoreFinishedJobResult(Guid clientId,
    4343      long jobId,
    4444      byte[] result,
    4545      double percentage,
    46       Exception exception, 
    47       bool finished);
     46      Exception exception);
     47    [OperationContract]
     48    ResponseResultReceived ProcessSnapshot(Guid clientId,
     49      long jobId,
     50      byte[] result,
     51      double percentage,
     52      Exception exception);
    4853    [OperationContract]
    4954    Response Logout(Guid clientId);
Note: See TracChangeset for help on using the changeset viewer.