Changeset 17468 for stable/HeuristicLab.Clients.Hive/3.3/Tasks
- Timestamp:
- 03/03/20 15:42:31 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Clients.Hive
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Clients.Hive merged: 17445
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Clients.Hive/3.3/Tasks/EngineTask.cs
r17181 r17468 80 80 81 81 public override async void Start() { 82 Item.Prepare(initialOperation); 83 await Item.StartAsync(); 82 try { 83 Item.Prepare(initialOperation); 84 await Item.StartAsync(); 85 } catch (Exception e) { 86 engine_ExceptionOccurred(Item, new EventArgs<Exception>(e)); 87 } 84 88 } 85 89 -
stable/HeuristicLab.Clients.Hive/3.3/Tasks/OptimizerTask.cs
r17181 r17468 101 101 OnTaskStopped(); 102 102 } else { 103 await Item.StartAsync(); 103 try { 104 await Item.StartAsync(); 105 } catch (Exception e) { 106 optimizer_ExceptionOccurred(Item, new EventArgs<Exception>(e)); 107 } 104 108 } 105 109 }
Note: See TracChangeset
for help on using the changeset viewer.