IPromiseT.cs
12 lines
| 205 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | using System; | ||
namespace Implab { | ||||
public interface IPromise<out T> : IPromise { | ||||
void Then(IResolvable<T> next); | ||||
new T Join(); | ||||
new T Join(int timeout); | ||||
} | ||||
} | ||||