Free cookie consent management tool by TermsFeed Policy Generator

Changeset 808


Ignore:
Timestamp:
11/23/08 19:46:28 (15 years ago)
Author:
kgrading
Message:

fixed the problem with (#385)

File:
1 edited

Legend:

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

    r805 r808  
    7474      clientCommunicator = ServiceLocator.GetClientCommunicator();
    7575      clientCommunicator.LoginCompleted += new EventHandler<LoginCompletedEventArgs>(ClientCommunicator_LoginCompleted);
     76      clientCommunicator.PullJobCompleted += new EventHandler<PullJobCompletedEventArgs>(ClientCommunicator_PullJobCompleted);
    7677      clientCommunicator.LoginAsync(clientInfo);
    7778
     
    130131
    131132
    132         case MessageContainer.MessageType.FetchJob:
    133           clientCommunicator.PullJobCompleted += new EventHandler<PullJobCompletedEventArgs>(ClientCommunicator_PullJobCompleted);
     133        case MessageContainer.MessageType.FetchJob:         
    134134          clientCommunicator.PullJobAsync(Guid.NewGuid());
    135135          break;
Note: See TracChangeset for help on using the changeset viewer.