IPromise.cs
20 lines
| 377 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; | ||||
} | ||||
} | ||||
} | ||||