annotate Implab.Test/PromiseHelper.cs @ 93:dc4942d09e74
v2
improved tracing
added the application components container MTComponentContainer.AppContainer
author |
cin |
date |
Thu, 23 Oct 2014 01:13:57 +0400 |
parents |
91362ffbecf8 |
children |
eb793fbbe4ea |
rev |
line source |
11
|
1 using Implab.Parallels;
|
10
|
2 using System.Threading;
|
|
3
|
|
4 namespace Implab.Test {
|
77
|
5 static class PromiseHelper {
|
73
|
6 public static IPromise<T> Sleep<T>(int timeout, T retVal) {
|
10
|
7 return AsyncPool.Invoke(() => {
|
|
8 Thread.Sleep(timeout);
|
|
9 return retVal;
|
|
10 });
|
|
11 }
|
|
12 }
|
|
13 }
|