Changeset 5093 for branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Communication/3.3/WcfService.cs
- Timestamp:
- 12/13/10 14:13:15 (14 years ago)
- 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 129 129 #region PullJob 130 130 public event System.EventHandler<GetJobCompletedEventArgs> GetJobCompleted; 131 public event System.EventHandler<EventArgs<Exception>> GetJobFailed; 131 132 public void GetJobAsync(Guid guid) { 132 133 Disposable<SlaveFacade.ISlaveFacade> service = ServiceLocator.Instance.StreamedSlaveFacadePool.GetService(); … … 159 160 catch (Exception e) { 160 161 OnExceptionOccured(e); 162 if (GetJobFailed != null) 163 GetJobFailed(this, new EventArgs<Exception>(e)); 161 164 } 162 165 finally {
Note: See TracChangeset
for help on using the changeset viewer.