我会用 为此 TPL Dataflow(因为您使用的是.NET 4.5,并且它在Task
内部使用)。您可以轻松创建一个ActionBlock<TInput>
在处理完操作并等待适当时间后将项目发布到其自身的对象。
首先,创建一个工厂,该工厂将创建您永无止境的任务:
ITargetBlock<DateTimeOffset> CreateNeverEndingTask(
Action<DateTimeOffset> action, CancellationToken cancellationToken)
{
// Validate parameters.
if (action == null) throw new ArgumentNullException("action");
// Declare the block variable, it needs to be captured.
ActionBlock<DateTimeOffset> block = null;
// Create the block, it will call itself, so
// you need to separate the declaration and
// the assignment.
// Async so you can wait easily when the
// delay comes.
block = new ActionBlock<DateTimeOffset>(async now => {
// Perform the action.
action(now);
// Wait.
await Task.Delay(TimeSpan.FromSeconds(10), cancellationToken).
// Doing this here because synchronization context more than
// likely *doesn't* need to be captured for the continuation
// here. As a matter of fact, that would be downright
// dangerous.
ConfigureAwait(false);
// Post the action back to the block.
block.Post(DateTimeOffset.Now);
}, new ExecutionDataflowBlockOptions {
CancellationToken = cancellationToken
});
// Return the block.
return block;
}
我选择了 ActionBlock<TInput>
一个DateTimeOffset
结构 ; 您必须传递一个类型参数,它也可能传递一些有用的状态(您可以根据需要更改状态的性质)。
另外,请注意,ActionBlock<TInput>
默认情况下,一次只能处理一项,因此可以确保仅处理一项操作(这意味着您不必处理当它再次调用Post
扩展方法时重入)。
我还将该CancellationToken
结构传递给了ActionBlock<TInput>
和Task.Delay
方法调用;如果取消了该过程,则取消将在第一个可能的机会发生。
从那里开始,很容易对代码进行重构,以存储由实现的ITargetBlock<DateTimeoffset>
接口ActionBlock<TInput>
(这是代表作为使用者的块的高级抽象,您希望能够通过调用来触发使用。Post
扩展方法):
CancellationTokenSource wtoken;
ActionBlock<DateTimeOffset> task;
你的 StartWork
方法:
void StartWork()
{
// Create the token source.
wtoken = new CancellationTokenSource();
// Set the task.
task = CreateNeverEndingTask(now => DoWork(), wtoken.Token);
// Start the task. Post the time.
task.Post(DateTimeOffset.Now);
}
然后你的 StopWork
方法:
void StopWork()
{
// CancellationTokenSource implements IDisposable.
using (wtoken)
{
// Cancel. This will cancel the task.
wtoken.Cancel();
}
// Set everything to null, since the references
// are on the class level and keeping them around
// is holding onto invalid state.
wtoken = null;
task = null;
}
您为什么要在这里使用TPL Dataflow?原因如下:
关注点分离
的 CreateNeverEndingTask
现在,方法是一家工厂,可以创建您的“服务”。您可以控制它的启动和停止时间,它是完全独立的。您不必将计时器的状态控制与代码的其他方面交织在一起。您只需创建一个块,然后启动它,然后在完成时停止它。
更有效地使用线程/任务/资源
对于Task
线程池,TPL数据流中块的默认调度程序与相同。通过使用ActionBlock<TInput>
来处理您的操作以及对的调用Task.Delay
,您可以在实际上不执行任何操作时控制所使用的线程。当然,当您生成Task
将处理延续的新内容时,这实际上会导致一些开销,但是考虑到您不是在紧密的循环中进行处理(在两次调用之间等待十秒钟),这应该很小。
如果DoWork
实际上可以使该函数处于等待状态(即,它返回Task
),那么您可以(可能)通过调整上面的factory方法来采用a Func<DateTimeOffset, CancellationToken, Task>
而不是来优化此效果Action<DateTimeOffset>
,如下所示:
ITargetBlock<DateTimeOffset> CreateNeverEndingTask(
Func<DateTimeOffset, CancellationToken, Task> action,
CancellationToken cancellationToken)
{
// Validate parameters.
if (action == null) throw new ArgumentNullException("action");
// Declare the block variable, it needs to be captured.
ActionBlock<DateTimeOffset> block = null;
// Create the block, it will call itself, so
// you need to separate the declaration and
// the assignment.
// Async so you can wait easily when the
// delay comes.
block = new ActionBlock<DateTimeOffset>(async now => {
// Perform the action. Wait on the result.
await action(now, cancellationToken).
// Doing this here because synchronization context more than
// likely *doesn't* need to be captured for the continuation
// here. As a matter of fact, that would be downright
// dangerous.
ConfigureAwait(false);
// Wait.
await Task.Delay(TimeSpan.FromSeconds(10), cancellationToken).
// Same as above.
ConfigureAwait(false);
// Post the action back to the block.
block.Post(DateTimeOffset.Now);
}, new ExecutionDataflowBlockOptions {
CancellationToken = cancellationToken
});
// Return the block.
return block;
}
当然,将CancellationToken
通孔编织到您的方法(如果它接受一种方法)将是一个好习惯,这是在这里完成的。
这意味着您将拥有一个DoWorkAsync
具有以下签名的方法:
Task DoWorkAsync(CancellationToken cancellationToken);
您必须进行更改(只需稍作更改,并且此处不会泄漏关注点的分离),StartWork
以说明传递给该CreateNeverEndingTask
方法的新签名的方法,如下所示:
void StartWork()
{
// Create the token source.
wtoken = new CancellationTokenSource();
// Set the task.
task = CreateNeverEndingTask((now, ct) => DoWorkAsync(ct), wtoken.Token);
// Start the task. Post the time.
task.Post(DateTimeOffset.Now, wtoken.Token);
}