有没有办法使用任务并行库来安排将来执行的任务?
我意识到我可以使用.NET4之前的方法来实现这一点,例如System.Threading.Timer ......但是如果有TPL方法可以做到这一点,我宁愿留在框架的设计中。但是,我找不到一个。
谢谢。
答案 0 :(得分:22)
此功能是在Async CTP中引入的,现已扩展到.NET 4.5。如下所示不会阻塞线程,但会返回将在以后执行的Task。
Task<MyType> new_task = Task.Delay(TimeSpan.FromMinutes(5))
.ContinueWith<MyType>( /*...*/ );
(如果使用旧的Async版本,请使用静态类TaskEx
而不是Task
)
答案 1 :(得分:11)
您可以编写自己的RunDelayed函数。这需要延迟并在延迟完成后运行一个函数。
public static Task<T> RunDelayed<T>(int millisecondsDelay, Func<T> func)
{
if(func == null)
{
throw new ArgumentNullException("func");
}
if (millisecondsDelay < 0)
{
throw new ArgumentOutOfRangeException("millisecondsDelay");
}
var taskCompletionSource = new TaskCompletionSource<T>();
var timer = new Timer(self =>
{
((Timer) self).Dispose();
try
{
var result = func();
taskCompletionSource.SetResult(result);
}
catch (Exception exception)
{
taskCompletionSource.SetException(exception);
}
});
timer.Change(millisecondsDelay, millisecondsDelay);
return taskCompletionSource.Task;
}
像这样使用:
public void UseRunDelayed()
{
var task = RunDelayed(500, () => "Hello");
task.ContinueWith(t => Console.WriteLine(t.Result));
}
答案 2 :(得分:2)
设置一次性计时器,在触发时启动任务。例如,下面的代码将在开始任务前等待五分钟。
TimeSpan TimeToWait = TimeSpan.FromMinutes(5);
Timer t = new Timer((s) =>
{
// start the task here
}, null, TimeToWait, TimeSpan.FromMilliseconds(-1));
TimeSpan.FromMilliseconds(-1)
使计时器成为一次性而非周期性计时器。