Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs
r14185 r14927 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.SequentialEngine { … … 30 30 /// Engine for sequential execution of algorithms. 31 31 /// </summary> 32 [Storable Class]32 [StorableType("ba09d079-10fe-4737-a816-6fbda5a22dd7")] 33 33 [Item("Sequential Engine", "Engine for sequential execution of algorithms.")] 34 34 public class SequentialEngine : Engine { … … 59 59 try { 60 60 next = operation.Operator.Execute((IExecutionContext)operation, cancellationToken); 61 } 62 catch (Exception ex) { 61 } catch (Exception ex) { 63 62 ExecutionStack.Push(operation); 64 63 if (ex is OperationCanceledException) throw ex;
Note: See TracChangeset
for help on using the changeset viewer.