Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/09 16:28:23 (15 years ago)
Author:
kgrading
Message:

work for ticket #467

File:
1 edited

Legend:

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

    r1132 r1147  
    184184    #region SendJobResults
    185185    public event System.EventHandler<SendJobResultCompletedEventArgs> SendJobResultCompleted;
    186     public void SendJobResultAsync(Guid clientId,
    187       long jobId,
    188       byte[] result,
    189       Exception exception,
    190       bool finished) {
     186    public void SendJobResultAsync(Guid clientId, long jobId, byte[] result, double percentage, Exception exception, bool finished) {
    191187      if (ConnState == NetworkEnum.WcfConnState.Connected)
    192         proxy.SendJobResultAsync(clientId,
    193            jobId,
    194            result,
    195            exception, 
    196            finished);
     188        proxy.SendJobResultAsync(clientId, jobId, result, percentage, exception, finished);
    197189    }
    198190    private void proxy_SendJobResultCompleted(object sender, SendJobResultCompletedEventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.