##// END OF EJS Templates
refactoring
refactoring

File last commit:

r11:6ec82bf68c8e promises
r11:6ec82bf68c8e promises
Show More
PromiseHelper.cs
17 lines | 420 B | text/x-csharp | CSharpLexer
cin
refactoring
r11 using Implab.Parallels;
using System;
cin
implemeted new cancellable promises concept
r10 using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace Implab.Test {
class PromiseHelper {
public static Promise<T> Sleep<T>(int timeout, T retVal) {
return AsyncPool.Invoke(() => {
Thread.Sleep(timeout);
return retVal;
});
}
}
}