Mercurial > pub > ImplabNet
view Implab.Test/PromiseHelper.cs @ 212:a01d9df88d74 v2
Added class Trace<T> to manage channels for individual classes, if SomeClass
uses Trace<SomeClass> it sould be marked with TraceSourceAttribute
author | cin |
---|---|
date | Tue, 04 Apr 2017 12:04:05 +0300 |
parents | 4d9830a9bbb8 |
children | d82909310094 |
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; }); } public static IPromise Sleep(int timeout) { return AsyncPool.Invoke((ct) => { ct.CancellationRequested(ct.CancelOperation); Thread.Sleep(timeout); return 0; }); } } }