##// END OF EJS Templates
Слияние с promises
Слияние с promises

File last commit:

r19:e3935fdf59a2 promises
r23:f0568ff069a5 merge default
Show More
IPromise.cs
20 lines | 377 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab
{
public interface IPromise: ICancellable
{
/// <summary>
/// Check whereather the promise has no more than one dependent promise.
/// </summary>
bool IsExclusive
{
get;
}
}
}