Mercurial > pub > ImplabNet
view Implab.Test/PromiseHelper.cs @ 241:c19cee55e85e v2-1
close v2-1
bad idea
author | cin |
---|---|
date | Thu, 10 Nov 2016 00:31:34 +0300 |
parents | 91362ffbecf8 |
children | eb793fbbe4ea |
line wrap: on
line source
using Implab.Parallels; using System.Threading; namespace Implab.Test { static class PromiseHelper { public static IPromise<T> Sleep<T>(int timeout, T retVal) { return AsyncPool.Invoke(() => { Thread.Sleep(timeout); return retVal; }); } } }