annotate Implab.Test/PromiseHelper.cs @ 198:b305c678923a
fixed error handling for chained actions
author |
koff |
date |
Mon, 10 Oct 2016 03:14:00 +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 }
|