##// END OF EJS Templates
renamed Promise.Last -> Promise.On...
renamed Promise.Last -> Promise.On Promise.On doesn't changes Promise.IsExclusive property

File last commit:

r25:9bf5b23650c9 default
r104:5f10d54b45df v2
Show More
ITaskController.cs
14 lines | 295 B | text/x-csharp | CSharpLexer
/ Implab / ITaskController.cs
cin
refactoring, added WorkerPool
r12 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
cin
refactoring
r25 public interface ITaskController: IProgressHandler, ICancellable {
bool IsCancelled {
cin
refactoring, added WorkerPool
r12 get;
}
cin
refactoring
r25
event EventHandler Cancelled;
cin
refactoring, added WorkerPool
r12 }
}