Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/13/10 14:13:15 (14 years ago)
Author:
cneumuel
Message:

#1260

  • moved all state-information into lifecycleManager
  • changed isolation level for transactions to ReadCommited
  • made currentlyFetching-status on slave more rubust
  • made LogServiceReader more rubust
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Communication/3.3/WcfService.cs

    r5037 r5093  
    129129    #region PullJob
    130130    public event System.EventHandler<GetJobCompletedEventArgs> GetJobCompleted;
     131    public event System.EventHandler<EventArgs<Exception>> GetJobFailed;
    131132    public void GetJobAsync(Guid guid) {
    132133      Disposable<SlaveFacade.ISlaveFacade> service = ServiceLocator.Instance.StreamedSlaveFacadePool.GetService();
     
    159160        catch (Exception e) {
    160161          OnExceptionOccured(e);
     162          if (GetJobFailed != null)
     163            GetJobFailed(this, new EventArgs<Exception>(e));
    161164        }
    162165        finally {
Note: See TracChangeset for help on using the changeset viewer.