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

File last commit:

r242:cbe10ac0731e v3
r243:b1e0ffdf3451 v3
Show More
IPromiseT.cs
12 lines | 226 B | text/x-csharp | CSharpLexer
cin
Refactoring
r66 using System;
cin
major refactoring, added tasks support
r75 namespace Implab {
cin
Promises rewritten, added improved version of AsyncQueue
r119 public interface IPromise<out T> : IPromise {
cin
Refactoring
r66
cin
Working on promises
r242 void On(Action<T> success, Action<Exception> error);
cin
Refactoring of the IPromise<T> interface...
r76
cin
DRAFT: refactoring
r144 new T Join();
new T Join(int timeout);
cin
Refactoring
r66 }
}