##// END OF EJS Templates
refactoring, sync
refactoring, sync

File last commit:

r19:e3935fdf59a2 promises
r20:1c3b3d518480 promises
Show More
IPromise.cs
20 lines | 377 B | text/x-csharp | CSharpLexer
cin
inital progress handling
r7 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab
{
cin
refactoring, added WorkerPool
r12 public interface IPromise: ICancellable
cin
inital progress handling
r7 {
/// <summary>
/// Check whereather the promise has no more than one dependent promise.
/// </summary>
bool IsExclusive
{
get;
}
}
}