Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/08/09 18:26:46 (15 years ago)
Author:
svonolfe
Message:

Changed SendJobResult Interface (#351)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Communication/WcfService.cs

    r1097 r1103  
    126126    #region SendJobResults
    127127    public event System.EventHandler<SendJobResultCompletedEventArgs> SendJobResultCompleted;
    128     public void SendJobResultAsync(JobResult result, bool finished) {
     128    public void SendJobResultAsync(Guid clientId,
     129      long jobId,
     130      byte[] result,
     131      Exception exception,
     132      bool finished) {
    129133      if (ConnState == NetworkEnum.WcfConnState.Connected)
    130         proxy.SendJobResultAsync(result, finished);
     134        proxy.SendJobResultAsync(clientId,
     135           jobId,
     136           result,
     137           exception, 
     138           finished);
    131139    }
    132140    private void proxy_SendJobResultCompleted(object sender, SendJobResultCompletedEventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.