##// END OF EJS Templates
working on promises
working on promises

File last commit:

r240:fa6cbf4d8841 v3
r243:b1e0ffdf3451 v3
Show More
IDeferredT.cs
12 lines | 200 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public interface IDeferred<in T> {
void Resolve(T value);
void Reject(Exception error);
void SetCancelled(Exception error);
}
}