##// END OF EJS Templates
fixed Resove method bug when calling it on already cancelled promise
fixed Resove method bug when calling it on already cancelled promise

File last commit:

r76:c761fc982e1d v2
r130:671f60cd0250 v2
Show More
ICancellable.cs
10 lines | 186 B | text/x-csharp | CSharpLexer
cin
refactoring, added WorkerPool
r12 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
public interface ICancellable {
cin
Refactoring of the IPromise<T> interface...
r76 void Cancel();
cin
refactoring, added WorkerPool
r12 }
}