Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/07/08 16:52:28 (15 years ago)
Author:
kgrading
Message:

added a connectionRestored Event (#418)

File:
1 edited

Legend:

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

    r923 r924  
    6666      wcfService.PullJobCompleted += new EventHandler<PullJobCompletedEventArgs>(wcfService_PullJobCompleted);
    6767      wcfService.SendJobResultCompleted += new EventHandler<SendJobResultCompletedEventArgs>(wcfService_SendJobResultCompleted);
     68      wcfService.ConnectionRestored += new EventHandler(wcfService_ConnectionRestored);
    6869
    6970      wcfService.LoginAsync(ConfigurationManager.GetInstance().GetClientInfo());
     
    127128    #region wcfService Events
    128129
     130    void wcfService_ConnectionRestored(object sender, EventArgs e) {
     131      //Do some fancy new things here... e.g: check all appdomains if there are still active Jobs that need to be transmitted
     132    }
     133
    129134    void wcfService_LoginCompleted(object sender, LoginCompletedEventArgs e) {
    130135      if (e.Result.Success) {
Note: See TracChangeset for help on using the changeset viewer.