IPromise.cs
33 lines
| 851 B
| text/x-csharp
|
CSharpLexer
/ Implab / IPromise.cs
cin
|
r7 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
namespace Implab | ||||
{ | ||||
cin
|
r12 | public interface IPromise: ICancellable | ||
cin
|
r7 | { | ||
/// <summary> | ||||
/// Check whereather the promise has no more than one dependent promise. | ||||
/// </summary> | ||||
bool IsExclusive | ||||
{ | ||||
get; | ||||
} | ||||
/// <summary> | ||||
/// The current state of the promise. | ||||
/// </summary> | ||||
PromiseState State | ||||
{ | ||||
get; | ||||
} | ||||
/// <summary> | ||||
cin
|
r10 | /// Registers handler for the case when the promise is cencelled. If the promise already cancelled the | ||
/// handler will be invoked immediatelly. | ||||
/// </summary> | ||||
/// <param name="handler">The handler</param> | ||||
void HandleCancelled(Action handler); | ||||
cin
|
r7 | } | ||
} | ||||