Mercurial > pub > ImplabNet
view Implab/IPromiseBase.cs @ 32:8eca2652d2ff
fixed: StackOverflow in IPromiseBase.Then(handler)
fixed: hang in ChainMap method on empty arrays
author | cin |
---|---|
date | Tue, 08 Apr 2014 23:25:01 +0400 |
parents | 768f7deeb55b |
children | b255e4aeef17 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Implab { public interface IPromiseBase: ICancellable { /// <summary> /// Check whereather the promise has no more than one dependent promise. /// </summary> bool IsExclusive { get; } /// <summary> /// Тип результата, получаемого через данное обещание. /// </summary> Type PromiseType { get; } bool IsResolved { get; } bool IsCancelled { get; } IPromiseBase Then(Action success,ErrorHandler error); IPromiseBase Then(Action success); IPromise<T> Cast<T>(); } }