annotate Implab.Test/PromiseHelper.cs @ 50:f8cbe84cfdb1
Слияние с interactive logger
author |
cin |
date |
Fri, 18 Apr 2014 12:37:48 +0400 |
parents |
6ec82bf68c8e |
children |
3b8393be3441 |
rev |
line source |
11
|
1 using Implab.Parallels;
|
|
2 using System;
|
10
|
3 using System.Collections.Generic;
|
|
4 using System.Linq;
|
|
5 using System.Text;
|
|
6 using System.Threading;
|
|
7
|
|
8 namespace Implab.Test {
|
|
9 class PromiseHelper {
|
|
10 public static Promise<T> Sleep<T>(int timeout, T retVal) {
|
|
11 return AsyncPool.Invoke(() => {
|
|
12 Thread.Sleep(timeout);
|
|
13 return retVal;
|
|
14 });
|
|
15 }
|
|
16 }
|
|
17 }
|