Mercurial > pub > ImplabNet
comparison Implab/IPromise.cs @ 243:b1e0ffdf3451 v3
working on promises
| author | cin |
|---|---|
| date | Wed, 24 Jan 2018 19:24:10 +0300 |
| parents | cbe10ac0731e |
| children | eee3e49dd1ff |
comparison
equal
deleted
inserted
replaced
| 242:cbe10ac0731e | 243:b1e0ffdf3451 |
|---|---|
| 2 using System.Collections.Generic; | 2 using System.Collections.Generic; |
| 3 using System.Linq; | 3 using System.Linq; |
| 4 using System.Text; | 4 using System.Text; |
| 5 | 5 |
| 6 namespace Implab { | 6 namespace Implab { |
| 7 public interface IPromise: ICancellable { | 7 public interface IPromise { |
| 8 | 8 |
| 9 /// <summary> | 9 /// <summary> |
| 10 /// Тип результата, получаемого через данное обещание. | 10 /// Тип результата, получаемого через данное обещание. |
| 11 /// </summary> | 11 /// </summary> |
| 12 Type ResultType { get; } | 12 Type ResultType { get; } |
