Mercurial > pub > ImplabNet
annotate Implab.Test/PromiseHelper.cs @ 110:1a8426e6e895 v2
added promise timeout helper
author | cin |
---|---|
date | Sun, 16 Nov 2014 02:49:12 +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 } |