IPromise.cs
37 lines
| 991 B
| text/x-csharp
|
CSharpLexer
/ Implab / IPromise.cs
cin
|
r7 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
cin
|
r66 | namespace Implab { | ||
public interface IPromise: ICancellable { | ||||
/// <summary> | ||||
/// Check whereather the promise has no more than one dependent promise. | ||||
/// </summary> | ||||
bool IsExclusive { | ||||
get; | ||||
} | ||||
cin
|
r26 | |||
cin
|
r66 | /// <summary> | ||
/// Тип результата, получаемого через данное обещание. | ||||
/// </summary> | ||||
Type PromiseType { get; } | ||||
cin
|
r25 | |||
cin
|
r66 | bool IsResolved { get; } | ||
bool IsCancelled { get; } | ||||
cin
|
r25 | |||
cin
|
r66 | IPromise Then(Action success,ErrorHandler error); | ||
IPromise Then(Action success); | ||||
IPromise Error(ErrorHandler error); | ||||
IPromise Anyway(Action handler); | ||||
IPromise Finally(Action handler); | ||||
IPromise Cancelled(Action handler); | ||||
cin
|
r7 | |||
cin
|
r66 | IPromise<T> Cast<T>(); | ||
cin
|
r26 | |||
cin
|
r66 | void Join(); | ||
void Join(int timeout); | ||||
cin
|
r7 | |||
} | ||||
} | ||||