##// END OF EJS Templates
Container configuration cleanup, RC2
Container configuration cleanup, RC2

File last commit:

r247:fb70574741a1 v3
r279:8714471e8d78 v3
Show More
IPromiseT.cs
12 lines | 205 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
r247 void Then(IResolvable<T> next);
cin
Refactoring of the IPromise<T> interface...
r76
cin
DRAFT: refactoring
r144 new T Join();
new T Join(int timeout);
cin
Refactoring
r66 }
}