annotate Implab.Test/PromiseHelper.cs @ 124:a336cb13c6a9
v2
major update, added Drain mathod to AsyncQueue class
author |
cin |
date |
Thu, 15 Jan 2015 02:43:14 +0300 |
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 }
|