annotate Implab.Test/PromiseHelper.cs @ 189:b60643b47078
ref20160224
Закрыть ветку ref20160224
author |
cin |
date |
Fri, 22 Apr 2016 13:07:41 +0300 |
parents |
eb793fbbe4ea |
children |
4d9830a9bbb8 |
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) {
|
149
|
7 return AsyncPool.Invoke((ct) => {
|
|
8 ct.CancellationRequested(ct.CancelOperation);
|
10
|
9 Thread.Sleep(timeout);
|
|
10 return retVal;
|
|
11 });
|
|
12 }
|
|
13 }
|
|
14 }
|