Mercurial > pub > ImplabNet
view Implab.Test/PromiseHelper.cs @ 183:4f82e0f161c3 ref20160224
fixed DFA optimization, JSON is fully functional
author | cin |
---|---|
date | Fri, 25 Mar 2016 02:49:02 +0300 |
parents | eb793fbbe4ea |
children | 4d9830a9bbb8 |
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((ct) => { ct.CancellationRequested(ct.CancelOperation); Thread.Sleep(timeout); return retVal; }); } } }