annotate Implab.Test/PromiseHelper.cs @ 149:eb793fbbe4ea
v2
fixed promises cancellation
author |
cin |
date |
Wed, 06 May 2015 17:11:27 +0300 |
parents |
91362ffbecf8 |
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 }
|