Changeset 15232 for branches/Async/HeuristicLab.Optimization/3.3/Algorithms
- Timestamp:
- 07/13/17 15:53:56 (7 years ago)
- Location:
- branches/Async/HeuristicLab.Optimization/3.3/Algorithms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs
r15065 r15232 213 213 public virtual async Task StartAsync() { await StartAsync(CancellationToken.None); } 214 214 public virtual async Task StartAsync(CancellationToken cancellationToken) { 215 await Task.Factory.StartNew((ct) => Start((CancellationToken)ct), cancellationToken, cancellationToken);215 await AsyncHelper.DoAsync(Start, cancellationToken); 216 216 } 217 217 public virtual void Pause() { -
branches/Async/HeuristicLab.Optimization/3.3/Algorithms/BasicAlgorithm.cs
r15215 r15232 21 21 22 22 using System; 23 using System.Linq; 23 24 using System.Threading; 24 25 using HeuristicLab.Common; … … 69 70 } catch (OperationCanceledException) { 70 71 } catch (AggregateException ae) { 71 if (ae.InnerExceptions.Count == 1) OnExceptionOccurred(ae.InnerExceptions[0]); 72 else OnExceptionOccurred(ae); 72 OnExceptionOccurred(ae.InnerExceptions.SingleOrDefault() ?? ae); 73 73 } catch (Exception e) { 74 74 OnExceptionOccurred(e);
Note: See TracChangeset
for help on using the changeset viewer.