自定义任务计划程序按日期时间启动任务
我目前正在研究命名空间 System.Threading.Tasks 和抽象基类 任务计划程序。我还发现 ParallelExtensionsExtra 以及从 TaskScheduler 继承的一些自定义调度程序。
但我需要一个任务调度程序,它允许我指定日期时间,何时执行任务。任何人都可以提供这样的课程或在互联网上的任何地方找到它并共享链接。
如果不是,我如何自己实现这样的 TaskScheduler(以 TaskScheduler 作为基类)?
I´m currently investigating the namespace System.Threading.Tasks and the abstract base class TaskScheduler. I also found the ParallelExtensionsExtra with some custom schedulers inherited from TaskScheduler.
But i need a TaskScheduler that allows me to specify a DateTime, when to execute a task. Can anybody provide such a class or found it anywhere on the internet and share a link.
If not how could i implement such a TaskScheduler on my own (with TaskScheduler as base class)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System.Threading.Task.TaskScheduler
是并行库的一部分 随 .NET 4 引入 - 它是关于并发(并行)执行任务。调度与线程/核心上的调度工作相关,而不是在某个时间范围/周期内。您确定这就是您要找的吗?Windows 具有计划任务,允许您在特定日期/时间和/或以特定周期/频率安排一些工作。请参阅本文,它提供了 .NET 中的包装器以使用此功能。也许这会满足您的要求。
System.Threading.Task.TaskScheduler
is part of parallel library introduced with .NET 4 - its about executing tasks concurrently (parallel). The scheduling is related to scheduling work on threads/cores rather than over some time horizon/period. Are you sure this is what you are looking for?Windows have scheduled tasks that allows you to schedule some work on specific date/time and/or with specific periodicity/frequency. See this article that provides wrapper in .NET to use this functionality. Perhaps this will fit your requirement.