Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/09 15:47:37 (15 years ago)
Author:
kgrading
Message:

bugfixes and updated webservice (#529)

File:
1 edited

Legend:

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

    r1364 r1366  
    8282      wcfService = WcfService.Instance;
    8383      wcfService.LoginCompleted += new EventHandler<LoginCompletedEventArgs>(wcfService_LoginCompleted);
    84       wcfService.PullJobCompleted += new EventHandler<PullJobCompletedEventArgs>(wcfService_PullJobCompleted);
    85       wcfService.SendJobResultCompleted += new EventHandler<SendJobResultCompletedEventArgs>(wcfService_SendJobResultCompleted);
     84      wcfService.PullJobCompleted += new EventHandler<SendJobCompletedEventArgs>(wcfService_PullJobCompleted);
     85      wcfService.SendJobResultCompleted += new EventHandler<ProcessJobResultCompletedEventArgs>(wcfService_SendJobResultCompleted);
    8686      wcfService.ConnectionRestored += new EventHandler(wcfService_ConnectionRestored);
    8787      wcfService.ServerChanged += new EventHandler(wcfService_ServerChanged);
     
    199199    }   
    200200
    201     void wcfService_PullJobCompleted(object sender, PullJobCompletedEventArgs e) {
     201    void wcfService_PullJobCompleted(object sender, SendJobCompletedEventArgs e) {
    202202      if (e.Result.StatusMessage != ApplicationConstants.RESPONSE_COMMUNICATOR_NO_JOBS_LEFT) {
    203203        bool sandboxed = true;
     
    227227    //Todo: Remove intellgent stuff from the async event and move it to the main thread (message queue)
    228228    //Todo: Seperate this method into 2: Finished jobs and Snapshots
    229     void wcfService_SendJobResultCompleted(object sender, SendJobResultCompletedEventArgs e) {
     229    void wcfService_SendJobResultCompleted(object sender, ProcessJobResultCompletedEventArgs e) {
    230230      if (e.Result.Success) {       
    231231        lock (Locker) {
Note: See TracChangeset for help on using the changeset viewer.