自定义任务计划程序按日期时间启动任务

发布于 2024-10-18 22:39:27 字数 444 浏览 0 评论 0原文

我目前正在研究命名空间 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飞烟轻若梦 2024-10-25 22:39:27

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文