using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Implab { public interface IPromise: ICancellable { /// /// Check whereather the promise has no more than one dependent promise. /// bool IsExclusive { get; } } }