Changeset 15292 for stable/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 07/28/17 16:47:42 (7 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/branches/Async (added) merged: 13329,13349,13354-13355,13401,15065,15190,15204,15212,15215-15216,15232,15280-15281,15284,15286 /trunk/sources merged: 15287
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Core
- Property svn:mergeinfo changed
/branches/Async/HeuristicLab.Core (added) merged: 13349,13354,13401,15065,15232,15280-15281 /trunk/sources/HeuristicLab.Core merged: 15287
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Core/3.3/Interfaces/IExecutable.cs
r14186 r15292 21 21 22 22 using System; 23 using System.Threading; 24 using System.Threading.Tasks; 23 25 using HeuristicLab.Common; 24 26 … … 30 32 void Prepare(); 31 33 void Start(); 34 void Start(CancellationToken cancellationToken); 35 Task StartAsync(); 36 Task StartAsync(CancellationToken cancellationToken); 32 37 void Pause(); 33 38 void Stop();
Note: See TracChangeset
for help on using the changeset viewer.